Index: head/security/sfs/Makefile =================================================================== --- head/security/sfs/Makefile (revision 71791) +++ head/security/sfs/Makefile (revision 71792) @@ -1,73 +1,74 @@ # Ports collection makefile for: sfs # Date created: 2002-07-11 # Whom: Michael Handler # Matthew Dodd # # $FreeBSD$ # PORTNAME= sfs PORTVERSION= 0.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security net MASTER_SITES= http://www.fs.net/sfs/new-york.lcs.mit.edu:85xq6pznt4mgfvj4mb23x6b8adak55ue/pub/sfswww/dist/ MAINTAINER= handler@grendel.net .include USE_GMAKE= yes USE_OPENSSL= yes +USE_BISON= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-sfsuser=sfs \ --with-sfsgroup=sfs \ --with-sfsdir=/var/spool/sfs \ --with-etcdir=${PREFIX}/etc/sfs \ --with-openssl=${OPENSSLBASE} \ --disable-uvfs .if ${OSVERSION} > 500000 LIB_DEPENDS+= gmp.6:${PORTSDIR}/math/libgmp4 CONFIGURE_ARGS+=--with-gmp=${PREFIX} .else CONFIGURE_ARGS+=--with-gmp=/usr .endif MAN1= \ rex.1 \ sfsagent.1 \ sfskey.1 \ ssu.1 MAN5= \ sfs_config.5 \ sfs_users.5 \ sfscd_config.5 \ sfssd_config.5 \ sfs_srp_params.5 \ sfsauthd_config.5 \ sfsrwsd_config.5 MAN8= \ sfsauthd.8 \ sfscd.8 \ sfsrwsd.8 \ sfssd.8 post-extract: @${SED} -e "s=%%PREFIX%%=${PREFIX}=g" ${FILESDIR}/sfscd.sh > ${WRKSRC}/sfscd.sh @${SED} -e "s=%%PREFIX%%=${PREFIX}=g" ${FILESDIR}/sfssd.sh > ${WRKSRC}/sfssd.sh post-install: ${INSTALL_SCRIPT} ${WRKSRC}/sfscd.sh ${PREFIX}/etc/rc.d/sfscd.sh.sample ${INSTALL_SCRIPT} ${WRKSRC}/sfssd.sh ${PREFIX}/etc/rc.d/sfssd.sh.sample ${MKDIR} ${PREFIX}/etc/sfs ${INSTALL_DATA} ${FILESDIR}/etc-sfsrwsd_config.sample ${PREFIX}/etc/sfs/sfsrwsd_config.sample ${MKDIR} ${PREFIX}/share/doc/sfs ${INSTALL_DATA} ${FILESDIR}/share-doc-WELCOME ${PREFIX}/share/doc/sfs/WELCOME ${INSTALL_DATA} ${FILESDIR}/share-doc-README ${PREFIX}/share/doc/sfs/README ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/sfs/README.packageblurb PKG_PREFIX=${PREFIX} ${SH} pkg-install ${PKGNAME} POST-INSTALL .include Property changes on: head/security/sfs/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.3 \ No newline at end of property +1.4 \ No newline at end of property Index: head/security/sfs/files/patch-parse.yy =================================================================== --- head/security/sfs/files/patch-parse.yy (nonexistent) +++ head/security/sfs/files/patch-parse.yy (revision 71792) @@ -0,0 +1,61 @@ +--- rpcc/parse.yy.orig Sat Jan 27 03:43:23 2001 ++++ rpcc/parse.yy Sun Dec 1 23:45:34 2002 +@@ -1,4 +1,4 @@ +-/* $Id: parse.yy,v 1.10 1999/05/14 00:16:01 dm Exp $ */ ++/* $Id: parse.yy,v 1.11 2002/10/23 21:02:33 dm Exp $ */ + + /* + * +@@ -23,6 +23,7 @@ + + %{ + #include "rpcc.h" ++#define YYSTYPE YYSTYPE + + static int proc_compare (const void *, const void *); + static int vers_compare (const void *, const void *); +@@ -97,6 +98,7 @@ + s->sconst->id = $2; + s->sconst->val = $4; + } ++ ; + + def_enum: T_ENUM newid '{' + { +@@ -129,6 +131,7 @@ + s->sunion->tagid = $6; + } + union_taglist '}' ';' ++ ; + + def_program: T_PROGRAM newid '{' + { +@@ -143,6 +146,7 @@ + qsort (s->sprogram->vers.base (), s->sprogram->vers.size (), + sizeof (rpc_vers), vers_compare); + } ++ ; + + version_list: version_decl | version_list version_decl + ; +@@ -224,15 +228,19 @@ + + struct_decl: declaration + { symlist.back ().sstruct->decls.push_back ($1); } ++ ; + + enum_taglist: enum_tag {} + | enum_taglist ',' enum_tag {} ++ ; + + enum_tag: enum_cnstag + { symlist.back ().senum->tags.push_back ($1); } ++ ; + + enum_cnstag: newid '=' value { $$.id = $1; $$.val = $3; } +- | newid { $$.id = $1; }; ++ | newid { $$.id = $1; } ++ ; + + declaration: type T_ID ';' + { $$.id = $2; $$.type = $1; $$.qual = rpc_decl::SCALAR; } Property changes on: head/security/sfs/files/patch-parse.yy ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/security/sfs/files/patch-scan.ll =================================================================== --- head/security/sfs/files/patch-scan.ll (nonexistent) +++ head/security/sfs/files/patch-scan.ll (revision 71792) @@ -0,0 +1,17 @@ +--- rpcc/scan.ll.orig Sat Jan 27 03:43:23 2001 ++++ rpcc/scan.ll Sun Dec 1 23:45:45 2002 +@@ -1,5 +1,5 @@ + /* -*-fundamental-*- */ +-/* $Id: scan.ll,v 1.7 1999/11/03 15:43:14 dm Exp $ */ ++/* $Id: scan.ll,v 1.8 2002/10/23 21:02:33 dm Exp $ */ + + /* + * +@@ -23,6 +23,7 @@ + */ + + %{ ++#define YYSTYPE YYSTYPE + #include "rpcc.h" + #include "parse.h" + Property changes on: head/security/sfs/files/patch-scan.ll ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property