The distfile has changed; unbreak by updating distinfo. Here's a diff (the old distfile should still be around on FreeBSD mirrors in case anyone wants to verify the diff himself): ### beginning of diff ### --- csv2latex.c.old Fri Sep 3 14:35:26 2004 +++ csv2latex.c Fri Sep 3 14:31:48 2004 @@ -20,7 +20,7 @@ #define PACKAGE "csv2latex" #define RELEASE_DATE "2003/05/01" -#define VERSION "0.5" +#define VERSION "0.6" typedef struct { char* tab; @@ -244,7 +244,9 @@ fprintf(out, "\\hline\n"); doTeXsub(conf, '&', in, out); /* & is LaTeX sep */ fprintf(out, "\\end{tabular}\n"); - fprintf(out, "\\end{document}\n"); + if(conf->header){ + fprintf(out, "\\end{document}\n"); + } return; } ### end of diff ### The attached patch also bumps PORTREVISION, as the diff looks like it fixes a bug in the program/corrects its behaviour. Generated with FreeBSD Port Tools 0.50
State Changed From-To: open->closed Committed, thanks! Remark: don't bump PORTREVISION, but change the date.