1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
/*
** Utility to create Makefile.am files given the directory containing
** the files plus the extra path information for installation.
**
** Can be used for the EMBOSS acd, doc/programs/html and
** doc/programs/text directories.
**
** Usage: makeam directory installdatapath
**
** e.g.
**
** makeam /fubar/emboss/emboss/emboss/acd acd > Makefile.am
** makeam /fubar/emboss/embosss/doc/programs/html doc/programs/html >
** Makefile.am
** makeam /fubar/emboss/embosss/doc/programs/text doc/programs/text >
** Makefile.am
**
** The program ignores:
** a) Directories
** b) Any file with the prefix "Makefile"
** c) Any file with the suffix '~'
** All other files are incorporated
**
** Author: (C) Alan Bleasby.
** Date: 20th February 2005
**
** This program is free software; you can redistribute it and/or
** modify it under the terms of the GNU General Public License
** as published by the Free Software Foundation; either version 2
** of the License, or (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <stdio.h>
#include <dirent.h>
#include <limits.h>
#include <sys/stat.h>
#include <sys/param.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <string.h>
#define MAXLINES 20
#define LINELEN 76
#define PKGTYPE 0
#define TABTYPE 1
static void get_dir_count(char *path, int *count, int *filelen);
static void get_names(char ***names, char *path, int count, int filelen);
static void write_packagedata(char **names, int *npackages);
int main(int argc, char **argv)
{
int nfiles = 0;
int filelen = 0;
char **names = NULL;
int i;
int npackages = 0;
if(argc < 3)
{
fprintf(stderr,"Usage: makeam directory installdatapath\n");
exit(-1);
}
get_dir_count(argv[1],&nfiles,&filelen);
get_names(&names,argv[1],nfiles,filelen);
write_packagedata(names,&npackages);
fprintf(stdout,"\n");
for(i=0;i<npackages;++i)
{
if(!i)
fprintf(stdout,"pkgdatadir=$(prefix)/share/$(PACKAGE)/%s\n",
argv[2]);
else
fprintf(stdout,"pkgdata%ddir=$(prefix)/share/$(PACKAGE)/%s\n",
i+1,argv[2]);
}
i = 0;
while(names[i])
free((void *)names[i++]);
free((void *)names);
return 0;
}
static void get_dir_count(char *path, int *count, int *filelen)
{
struct dirent *dp;
DIR *dir;
char dirpath[MAXPATHLEN];
char fullname[MAXPATHLEN];
int len;
struct stat buf;
strcpy(dirpath,path);
len = strlen(dirpath);
if(dirpath[len-1] != '/')
strcat(dirpath,"/");
if(!(dir = opendir(dirpath)))
{
fprintf(stderr,"Error: Cannot open directory [%s]\n",path);
exit(-1);
}
while((dp=readdir(dir)))
{
if(!dp->d_ino || *dp->d_name == '.' ||
!strncmp(dp->d_name,"Makefile",8))
continue;
sprintf(fullname,"%s%s",dirpath,dp->d_name);
if(!stat(fullname,&buf))
if(buf.st_mode & S_IFDIR)
continue;
len = strlen(dp->d_name);
if(dp->d_name[len-1] == '~')
continue;
++(*count);
*filelen = (len > *filelen) ? len : *filelen;
}
closedir(dir);
return;
}
static void get_names(char ***names, char *path, int count, int filelen)
{
struct dirent *dp;
DIR *dir;
char dirpath[MAXPATHLEN];
char fullname[MAXPATHLEN];
int len;
struct stat buf;
int i;
if(!((*names) = (char **) malloc((count+1) * sizeof(char *))))
{
fprintf(stderr,"Error: Memory allocation for array\n");
exit(-1);
}
(*names)[count] = NULL;
for(i=0;i<count;++i)
if(!((*names)[i] = (char *) malloc(filelen+1)))
{
fprintf(stderr,"Error: Memory allocation for char *\n");
exit(-1);
}
strcpy(dirpath,path);
len = strlen(dirpath);
if(dirpath[len-1] != '/')
strcat(dirpath,"/");
if(!(dir = opendir(dirpath)))
{
fprintf(stderr,"Error: Cannot open directory [%s]\n",path);
exit(-1);
}
i = 0;
while((dp=readdir(dir)))
{
if(!dp->d_ino || *dp->d_name == '.' ||
!strncmp(dp->d_name,"Makefile",8))
continue;
sprintf(fullname,"%s%s",dirpath,dp->d_name);
if(!stat(fullname,&buf))
if(buf.st_mode & S_IFDIR)
continue;
len = strlen(dp->d_name);
if(dp->d_name[len-1] == '~')
continue;
strcpy((*names)[i++],dp->d_name);
}
closedir(dir);
return;
}
static void write_packagedata(char **names, int *npackages)
{
int start = 1;
int pos = 0;
char line[MAXPATHLEN];
int nlines = 0;
int linetype = 0;
int maxlinelength = 0;
int len = 0;
int do_write = 0;
while(names[pos])
{
if(start)
{
fprintf(stdout,"\n");
++(*npackages);
if(*npackages == 1)
strcpy(line,"pkgdata_DATA =");
else
sprintf(line,"pkgdata%d_DATA =",*npackages);
linetype = PKGTYPE;
start = 0;
do_write = 1;
}
if(linetype == PKGTYPE)
maxlinelength = LINELEN;
else
maxlinelength = LINELEN - 8;
len = strlen(line);
if(len + strlen(names[pos]) < maxlinelength)
{
strcat(line," ");
strcat(line,names[pos++]);
}
else
{
if(!names[pos+1])
{
strcat(line," \\");
fprintf(stdout,"%s\n",line);
fprintf(stdout,"\t%s\n",names[pos++]);
do_write = 0;
continue;
}
if(nlines == MAXLINES)
{
fprintf(stdout,"%s\n",line);
start = 1;
nlines = 0;
continue;
}
strcat(line," \\");
linetype = TABTYPE;
fprintf(stdout,"%s\n",line);
sprintf(line,"\t%s",names[pos++]);
++nlines;
}
}
if(do_write)
fprintf(stdout,"%s\n",line);
return;
}
|