Index: head/mail/ifile/Makefile =================================================================== --- head/mail/ifile/Makefile (revision 395724) +++ head/mail/ifile/Makefile (revision 395725) @@ -1,23 +1,25 @@ # Created by: David Bushong # $FreeBSD$ PORTNAME= ifile PORTVERSION= 1.3.8 CATEGORIES= mail textproc MASTER_SITES= http://people.csail.mit.edu/jrennie/ifile/ MAINTAINER= ports@FreeBSD.org COMMENT= Application of machine learning to e-mail filtering +LICENSE= GPLv2 + USES= gmake GNU_CONFIGURE= yes USE_CSTD= gnu89 PLIST_FILES= bin/ifile \ man/man1/ifile.1.gz do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ifile ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/ifile.1 ${STAGEDIR}${MANPREFIX}/man/man1 .include Index: head/mail/ifile/files/patch-Makefile.in =================================================================== --- head/mail/ifile/files/patch-Makefile.in (revision 395724) +++ head/mail/ifile/files/patch-Makefile.in (revision 395725) @@ -1,14 +1,22 @@ ---- Makefile.in.orig 2006-05-22 11:49:21.000000000 -0500 -+++ Makefile.in 2011-03-25 14:18:34.000000000 -0500 -@@ -48,3 +48,3 @@ +--- Makefile.in.orig 2006-05-22 16:49:21 UTC ++++ Makefile.in +@@ -46,7 +46,7 @@ LIBS = @LIBS@ + CFLAGS = @CFLAGS@ + CPPFLAGS = @CPPFLAGS@ INCLUDEFLAGS = -LDFLAGS = +LDFLAGS = @LDFLAGS@ -@@ -56,4 +56,4 @@ + prefix = @prefix@ + exec_prefix = @exec_prefix@ +@@ -54,8 +54,8 @@ bindir = @bindir@ + mandir = @mandir@ + # Installation locations -if [ ! $bindir ] ; then bindir = $(exec_prefix)/bin; fi -if [ ! $mandir ] ; then mandir = $(prefix)/man; fi +# if [ ! $bindir ] ; then bindir = $(exec_prefix)/bin; fi +# if [ ! $mandir ] ; then mandir = $(prefix)/man; fi + #### This is just a test---feel free to delete ### + printdirs: Index: head/mail/ifile/files/patch-argp_argp-fmtstream.h =================================================================== --- head/mail/ifile/files/patch-argp_argp-fmtstream.h (nonexistent) +++ head/mail/ifile/files/patch-argp_argp-fmtstream.h (revision 395725) @@ -0,0 +1,20 @@ +--- argp/argp-fmtstream.h.orig 2006-05-22 16:49:23 UTC ++++ argp/argp-fmtstream.h +@@ -186,7 +186,7 @@ extern void __argp_fmtstream_update (arg + extern int _argp_fmtstream_ensure (argp_fmtstream_t __fs, size_t __amount); + extern int __argp_fmtstream_ensure (argp_fmtstream_t __fs, size_t __amount); + +-#ifdef __OPTIMIZE__ ++#ifdef __OPTIMIZE_INLINE__ + /* Inline versions of above routines. */ + + #if !_LIBC +@@ -298,7 +298,7 @@ __argp_fmtstream_point (argp_fmtstream_t + #undef __argp_fmtstream_ensure + #endif + +-#endif /* __OPTIMIZE__ */ ++#endif /* __OPTIMIZE_INLINE__ */ + + #endif /* ARGP_FMTSTREAM_USE_LINEWRAP */ + Property changes on: head/mail/ifile/files/patch-argp_argp-fmtstream.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/mail/ifile/files/patch-argp_argp-fs-xinl.c =================================================================== --- head/mail/ifile/files/patch-argp_argp-fs-xinl.c (nonexistent) +++ head/mail/ifile/files/patch-argp_argp-fs-xinl.c (revision 395725) @@ -0,0 +1,12 @@ +--- argp/argp-fs-xinl.c.orig 2006-05-22 16:49:22 UTC ++++ argp/argp-fs-xinl.c +@@ -24,7 +24,8 @@ + + #define ARGP_FS_EI + #undef __OPTIMIZE__ +-#define __OPTIMIZE__ ++#define __OPTIMIZE__ 0 ++#define __OPTIMIZE_INLINE__ + #include "argp-fmtstream.h" + + /* Add weak aliases. */ Property changes on: head/mail/ifile/files/patch-argp_argp-fs-xinl.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/mail/ifile/files/patch-argp_argp-xinl.c =================================================================== --- head/mail/ifile/files/patch-argp_argp-xinl.c (nonexistent) +++ head/mail/ifile/files/patch-argp_argp-xinl.c (revision 395725) @@ -0,0 +1,12 @@ +--- argp/argp-xinl.c.orig 2006-05-22 16:49:22 UTC ++++ argp/argp-xinl.c +@@ -24,7 +24,8 @@ + + #define ARGP_EI + #undef __OPTIMIZE__ +-#define __OPTIMIZE__ ++#define __OPTIMIZE__ 0 ++#define __OPTIMIZE_INLINE__ + #include "argp.h" + + /* Add weak aliases. */ Property changes on: head/mail/ifile/files/patch-argp_argp-xinl.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/mail/ifile/files/patch-argp_argp.h =================================================================== --- head/mail/ifile/files/patch-argp_argp.h (revision 395724) +++ head/mail/ifile/files/patch-argp_argp.h (revision 395725) @@ -1,11 +1,11 @@ ---- argp/argp.h.orig Tue Jun 10 23:09:27 2003 -+++ argp/argp.h Mon Jul 7 04:31:41 2003 -@@ -352,7 +352,7 @@ +--- argp/argp.h.orig 2006-05-22 16:49:22 UTC ++++ argp/argp.h +@@ -352,7 +352,7 @@ struct argp_state #define ARGP_NO_EXIT 0x20 /* Use the gnu getopt `long-only' rules for parsing arguments. */ -#define ARGP_LONG_ONLY 0x40 +#define ARGP_LONG_ONLY 0x00 /* Turns off any message-printing/exiting options. */ #define ARGP_SILENT (ARGP_NO_EXIT | ARGP_NO_ERRS | ARGP_NO_HELP)