Index: head/print/apsfilter/Makefile =================================================================== --- head/print/apsfilter/Makefile (revision 200764) +++ head/print/apsfilter/Makefile (revision 200765) @@ -1,155 +1,144 @@ # New ports collection makefile for: apsfilter # Date created: Tue Nov 14 18:29:48 MET 1995 # Whom: Andreas Klemm # # $FreeBSD$ # PORTNAME= apsfilter PORTVERSION= 7.2.8 PORTREVISION= 3 CATEGORIES= print MASTER_SITES= http://www.apsfilter.org/download/ MAINTAINER= andreas@FreeBSD.org COMMENT= Magic print filter with print preview, duplex printing and more DIST_SUBDIR= apsfilter USE_SUBMAKE= yes SUB_FILES+= pkg-message # special arrangement for package building, build stuff without X11 # to make memory footprint of apsfilter package smaller .if defined(BATCH) && defined(PACKAGE_BUILDING) NO_X= yes .endif .if defined(WITHOUT_X11) # XXX Hack. If you've done something like "-DWITHOUT_X11" on the command line # (instead of WITHOUT_X11=true, or similar) gmake won't pick it up. So make # sure that NO_X is defined *and* has a value. MAKE_ENV+= NO_X=true .endif USE_GHOSTSCRIPT_RUN= yes # # hint: for batch mode you can now draw the following decisions # - build and install most important filter utilities # that don't require X # - APSFILTER_ALL build and install all supported filter utilities # - WITHOUT_X11 toggles not to build tools that need X11, even if # APSFILTER_ALL is set # - PAPERSIZE Use PAPERSIZE as in a2ps port, default to letter. PAPERSIZE?= letter .if ${PAPERSIZE} != a4 && ${PAPERSIZE} != letter && ${PAPERSIZE} != letterdj .BEGIN: @${ECHO_CMD} @${ECHO_CMD} "PAPERSIZE incorrect value: ${PAPERSIZE}." @${ECHO_CMD} @${ECHO_CMD} "Must specify PAPERSIZE as one of a4, letter, or letterdj." @${ECHO_CMD} "letterdj allows a slightly larger margins for DeskJets." @${FALSE} .endif .if defined(BATCH) && defined(APSFILTER_ALL) # # Build and install all filter apsfilter knows about (rather expensive) # # all needed decompression utilities RUN_DEPENDS+= melt:${PORTSDIR}/archivers/freeze RUN_DEPENDS+= lzop:${PORTSDIR}/archivers/lzop # all needed "ASCII to ps" filter utilities RUN_DEPENDS+= a2ps:${PORTSDIR}/print/a2ps-${PAPERSIZE} RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-${PAPERSIZE} RUN_DEPENDS+= mpage:${PORTSDIR}/print/mpage RUN_DEPENDS+= recode:${PORTSDIR}/converters/recode # all needed "ARCHIVE" extraction utilities RUN_DEPENDS+= arc:${PORTSDIR}/archivers/arc RUN_DEPENDS+= cabextract:${PORTSDIR}/archivers/cabextract RUN_DEPENDS+= lha:${PORTSDIR}/archivers/lha RUN_DEPENDS+= rar:${PORTSDIR}/archivers/rar RUN_DEPENDS+= rpm:${PORTSDIR}/archivers/rpm RUN_DEPENDS+= unarj:${PORTSDIR}/archivers/unarj RUN_DEPENDS+= unzip:${PORTSDIR}/archivers/unzip RUN_DEPENDS+= zoo:${PORTSDIR}/archivers/zoo # all needed "xxx to ps" filter utilities RUN_DEPENDS+= fitstopnm:${PORTSDIR}/graphics/netpbm RUN_DEPENDS+= htmldoc:${PORTSDIR}/textproc/htmldoc RUN_DEPENDS+= psnup:${PORTSDIR}/print/psutils-${PAPERSIZE} .if !defined(WITHOUT_X11) # "xxx to ps" filter utilities that require X RUN_DEPENDS+= ${X11BASE}/Adobe/Acrobat7.0/ENU/bin/acroread:${PORTSDIR}/print/acroread7 RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick RUN_DEPENDS+= dvips:${PORTSDIR}/print/teTeX RUN_DEPENDS+= wmf2eps:${PORTSDIR}/graphics/libwmf RUN_DEPENDS+= sk2ps:${PORTSDIR}/graphics/skencil RUN_DEPENDS+= tgif:${PORTSDIR}/graphics/tgif RUN_DEPENDS+= transfig:${PORTSDIR}/print/transfig # filter utilities for playing audio files via line printer scheduler RUN_DEPENDS+= mpg321:${PORTSDIR}/audio/mpg321 RUN_DEPENDS+= ogg123:${PORTSDIR}/audio/vorbis-tools RUN_DEPENDS+= wavplay:${PORTSDIR}/audio/wavplay .else # "xxx to ps" filter utilities that don't require X # XXX needs more work .endif # all possible remote printing support RUN_DEPENDS+= pap:${PORTSDIR}/net/netatalk RUN_DEPENDS+= smbclient:${PORTSDIR}/net/samba3 .elif defined(BATCH) # # in normal batch/portbuilding mode (without building all) # don't build too many dependencies # since apsfilter should fit easily on installation CD 1... # # most important "xxx to ps" filter utilities RUN_DEPENDS+= a2ps:${PORTSDIR}/print/a2ps-${PAPERSIZE} RUN_DEPENDS+= psnup:${PORTSDIR}/print/psutils-${PAPERSIZE} .endif # needed for aps2file RUN_DEPENDS+= bash:${PORTSDIR}/shells/bash # HP IJS driver is not automatically part of ghostscript port anymore RUN_DEPENDS+= hpijs:${PORTSDIR}/print/hpijs MAN1= apsfilter.1 aps2file.1 apsfilter-bug.1 apspreview.1 MAN5= apsfilterrc.5 HAS_CONFIGURE= yes USE_BZIP2= yes WRKSRC= ${WRKDIR}/apsfilter SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" GHOSTSCRIPT_PORT="${GHOSTSCRIPT_PORT}" CONFIGURE_ARGS= --prefix=${PREFIX} .if !defined(BATCH) pre-configure: @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc post-clean: @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc .if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) .include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" .endif .endif post-install: -.if defined(OSVERSION) && ${OSVERSION} < 400012 - @${ECHO} "********************************************************" - @${ECHO} "* Please Note: *" - @${ECHO} "********************************************************" - @${ECHO} "You have FreeBSD version <= 4.0. If you want to print " - @${ECHO} "troff files then you have to install the grog utility " - @${ECHO} "from groff sources: " - @${ECHO} " cp /usr/src/contrib/groff/grog/grog.sh /usr/bin/grog" - @${ECHO} " chmod 555 /usr/bin/grog " - @${ECHO} "--------------------------------------------------------" -.endif @${CAT} ${PKGMESSAGE} .include Property changes on: head/print/apsfilter/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.132 \ No newline at end of property +1.133 \ No newline at end of property Index: head/russian/prawda/Makefile =================================================================== --- head/russian/prawda/Makefile (revision 200764) +++ head/russian/prawda/Makefile (revision 200765) @@ -1,39 +1,33 @@ # New ports collection makefile for: prawda # Date created: 2004-07-28 # Whom: Roman Bogorodskiy # # $FreeBSD$ # PORTNAME= prawda PORTVERSION= 0.3.0 PORTREVISION= 2 CATEGORIES= russian MASTER_SITES= http://www.prawda.newmail.ru/ MAINTAINER= novel@FreeBSD.org COMMENT= English-Russian translator USE_BZIP2= yes NO_WRKSUBDIR= yes USE_X_PREFIX= yes CXXFLAGS+= -I${X11BASE}/include -L${X11BASE}/lib -.include - -.if ${OSVERSION} < 400010 -LIB_DEPENDS+= ncurses.5:${PORTSDIR}/devel/ncurses -.endif - post-patch: @${REINPLACE_CMD} -e "s|ulong|unsigned long|g;;s|malloc.h|stdlib.h|g" ${WRKSRC}/src/face/video_x.cpp @${REINPLACE_CMD} -e "s|g++|${CXX} ${CXXFLAGS}|g" ${WRKSRC}/src/bin/makefile.exe @${REINPLACE_CMD} -e "s|/usr/local|${PREFIX}|g" ${WRKSRC}/bin/makefile ${WRKSRC}/src/face/main.cpp do-build: @cd ${WRKSRC}/bin && ${MAKE} do-install: @cd ${WRKSRC}/bin && ${MAKE} install -.include +.include Property changes on: head/russian/prawda/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.6 \ No newline at end of property +1.7 \ No newline at end of property Index: head/security/bdc/Makefile =================================================================== --- head/security/bdc/Makefile (revision 200764) +++ head/security/bdc/Makefile (revision 200765) @@ -1,65 +1,63 @@ # New ports collection makefile for: bdc # Date created: 4 December 2004 # Whom: Adi Pircalabu # # $FreeBSD$ # PORTNAME= bdc PORTVERSION= 7.0.1 PORTREVISION= 2 CATEGORIES= security #MASTER_SITES= # http://download.bitdefender.com/freebsd/${BDREL}/final/ DISTNAME= ${PORTNAME}-${PORTVERSION}.2-fbsd${BDREL} MAINTAINER= apircalabu@bitdefender.com COMMENT= BitDefender Console Antivirus for FreeBSD .include .if ${OSVERSION} >= 600000 LIB_DEPENDS+= c.5:${PORTSDIR}/misc/compat5x .endif -.if ${OSVERSION} < 490000 || ${OSVERSION} >= 500000 && ${OSVERSION} < 502001 +.if ${OSVERSION} >= 500000 && ${OSVERSION} < 502001 IGNORE= requires FreeBSD-STABLE \(4.9 or later\), or FreeBSD-CURRENT \(5.2.1 or later\) -.elif ${OSVERSION} < 500000 -BDREL= 4 .else BDREL= 5 .endif WRKSRC= ${WRKDIR}/${PORTNAME} NO_BUILD= yes PKGMESSAGE= ${WRKDIR}/pkg-message ONLY_FOR_ARCHS= i386 RESTRICTED= License prohibits redistribution .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING) ECHO_MSG= /usr/bin/printf IGNORE= :\n\ You have to fetch ${DISTNAME}${EXTRACT_SUFX} manually after\n\ reading and agreeing to the license at:\n\ http://download.bitdefender.com/SMB/Workstation_Security_and_Management/BitDefender_Antivirus_Scanner_for_Unices/Unix/Old/EN/freebsd/Ver_${BDREL}/\n\ A direct link to the distribution file:\n\ http://download.bitdefender.com/SMB/Workstation_Security_and_Management/BitDefender_Antivirus_Scanner_for_Unices/Unix/Old/EN/freebsd/Ver_${BDREL}/bdc-7.0.1.2-fbsd${BDREL}.tar.gz\n\ Once the file has been downloaded move it to\n\ ${DISTDIR} and restart the build.\n .endif do-install: @cd ${WRKDIR} && ${TAR} -cf - bdc | ${TAR} -xf - -C ${PREFIX}/ @${CHOWN} -R ${BINOWN}:${BINGRP} ${PREFIX}/bdc @${CHMOD} -R a=rX,u+w ${PREFIX}/bdc/ @${SED} -e 's|%%PREFIX%%|${PREFIX}|g ; \ s|%%PORTNAME%%|${PORTNAME}|g' \ < ${PKGDIR}/pkg-message > ${PKGMESSAGE} @${SED} -e 's|%%PREFIX%%|${PREFIX}|g' \ < ${FILESDIR}/bdc > ${PREFIX}/bin/bdc @${CHMOD} +x ${PREFIX}/bin/bdc @${CAT} ${PKGMESSAGE} .include Property changes on: head/security/bdc/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.7 \ No newline at end of property +1.8 \ No newline at end of property Index: head/security/cyrus-sasl/Makefile =================================================================== --- head/security/cyrus-sasl/Makefile (revision 200764) +++ head/security/cyrus-sasl/Makefile (revision 200765) @@ -1,285 +1,281 @@ # New ports collection makefile for: cyrus-sasl # Date created: Nov 1 1999 # Whom: hetzels@westbend.net # # $FreeBSD$ # PORTNAME= cyrus-sasl PORTVERSION= 1.5.28 PORTREVISION= 5 CATEGORIES= security ipv6 MAINTAINER= ports@FreeBSD.org COMMENT= RFC 2222 SASL (Simple Authentication and Security Layer) DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ sasl-${PORTVERSION}-ldap-ssl-filter-mysql-patch.tgz:ldap_mysql MASTER_SITES= ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/%SUBDIR%/ \ ftp://ftp.westbend.net/pub/cyrus-mail/%SUBDIR%/ \ http://www.transit.hanse.de/mirror/ftp.andrew.cmu.edu/pub/cyrus-mail/ \ http://www.surf.org.uk/downloads/:ldap_mysql \ ftp://ftp.westbend.net/pub/cyrus-mail/%SUBDIR%/:ldap_mysql \ ${MASTER_SITE_SOURCEFORGE:S/$/:ldap_mysql/} MASTER_SITE_SUBDIR= . OLD-VERSIONS/sasl cyrus-utils/:ldap_mysql PATCHFILES= sasl_apop_patch.gz:apop \ ${DISTNAME}-ipv6-${IPV6_VER}.diff.gz PATCH_SITES= ftp://ftp.westbend.net/pub/cyrus-mail/contrib/:apop \ http://www.imasy.or.jp/~ume/ipv6/ DEPRECATED= patches are unfetchable and this software is unsupported EXPIRATION_DATE= 2007-01-02 USE_SUBMAKE= yes USE_OPENSSL= yes USE_LDCONFIG= yes # IPv6 Patch provided by Hajimu UMEMOTO IPV6_VER= 20020106 MAN3= sasl.3 sasl_authorize_t.3 sasl_callbacks.3 sasl_checkpass.3 \ sasl_client_init.3 sasl_client_new.3 sasl_client_start.3 \ sasl_client_step.3 sasl_decode.3 sasl_done.3 sasl_encode.3 \ sasl_errstring.3 sasl_getopt_t.3 sasl_getpath_t.3 \ sasl_getprop.3 sasl_getsecret_t.3 sasl_getsimple_t.3 \ sasl_listmech.3 sasl_log_t.3 sasl_server_init.3 \ sasl_server_new.3 sasl_server_start.3 sasl_server_step.3 \ sasl_setprop.3 sasl_usererr.3 MAN8= sasldblistusers.8 saslpasswd.8 saslauthd1.8 USE_RC_SUBR= YES USE_AUTOTOOLS= automake:14 autoconf:213 libtool:15 AUTOMAKE_ARGS= --add-missing --include-deps CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc \ --with-plugindir=${PREFIX}/lib/sasl \ --with-dbpath=${PREFIX}/etc/sasldb \ --includedir=${PREFIX}/include/sasl1 \ --enable-static \ --with-saslauthd=/var/state/saslauthd1 \ --enable-auth-sasldb \ --with-pwcheck=/var/pwcheck \ --with-rc4=openssl SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ PREFIX="${PREFIX}" \ TOUCH="${TOUCH}" \ MKDIR="${MKDIR}" \ REALCURDIR="${.CURDIR}" \ WITH_DB3="${WITH_DB3}" \ WITH_JAVA="${WITH_JAVA}" \ WITH_MYSQL="${WITH_MYSQL}" \ WITH_LDAP1="${WITH_LDAP1}" \ WITH_LDAP2="${WITH_LDAP2}" JAVADIR?= jdk1.3.1 JAVALIBDIR?= ${PREFIX}/${JAVADIR}/lib/i386/green_threads/ .if defined(WITHOUT_ANONYMOUS) CONFIGURE_ARGS+= --disable-anon ANON= "@comment " .endif .if defined(WITHOUT_CRAM) CONFIGURE_ARGS+= --disable-cram CRAM= "@comment " .endif .if defined(WITHOUT_DIGEST) CONFIGURE_ARGS+= --disable-digest DIGEST= "@comment " .endif # Outlook and Outlook Express requires the LOGIN mech .if defined(WITHOUT_LOGIN) CONFIGURE_ARGS+= --disable-login LOGIN= "@comment " .else CONFIGURE_ARGS+= --enable-login .endif .if defined(WITHOUT_OTP) CONFIGURE_ARGS+= --disable-otp OTP= "@comment " .endif # Netscape requires the PLAIN mech .if defined(WITHOUT_PLAIN) CONFIGURE_ARGS+= --disable-plain PLAIN= "@comment " .endif .if !defined(WITHOUT_GSSAPI) && defined(KRB5_HOME) && exists(${KRB5_HOME}/lib/libgssapi_krb5.a) CONFIGURE_ARGS+= --enable-gssapi=${KRB5_HOME} .elif !defined(WITHOUT_GSSAPI) && defined(HEIMDAL_HOME) && exists(${HEIMDAL_HOME}/lib/libgssapi.a) CONFIGURE_ARGS+= --enable-gssapi=${HEIMDAL_HOME} .elif !defined(WITHOUT_GSSAPI) && defined(MAKE_KERBEROS5) && exists(/usr/lib/libkrb5.a) CONFIGURE_ARGS+= --enable-gssapi .else CONFIGURE_ARGS+= --disable-gssapi GSSAPI= "@comment " .endif .include # KERBEROS 4 was removed in FreeBSD 5.0-CURRENT .if ${OSVERSION} > 500105 .if defined(WITH_KERBEROS4) LIB_DEPENDS+= krb.2:${PORTSDIR}/security/krb4 CONFIGURE_ARGS+= --enable-krb4=${LOCALBASE}/krb4 .else CONFIGURE_ARGS+= --disable-krb4 EBONES= "@comment " .endif .elif exists(/usr/lib/libkrb.a) && defined(MAKE_KERBEROS4) && !defined(WITHOUT_KERBEROS4) CONFIGURE_ARGS+= --enable-krb4 .elif !exists(/usr/lib/libkrb.a) && defined(WITH_KERBEROS4) LIB_DEPENDS+= krb.2:${PORTSDIR}/security/krb4 CONFIGURE_ARGS+= --enable-krb4=${LOCALBASE}/krb4 .else CONFIGURE_ARGS+= --disable-krb4 EBONES= "@comment " .endif CONFIGURE_ENV+= LOCALBASE=${LOCALBASE} \ OPENSSLINC=${OPENSSLINC} \ OPENSSLLIB=${OPENSSLLIB} CYRUS_USER?= cyrus CYRUS_GROUP?= cyrus DOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README TODO PLIST_SUB= PREFIX=${PREFIX} \ ANON=${ANON} \ OTP=${OTP} \ CRAM=${CRAM} \ DIGEST=${DIGEST} \ LOGIN=${LOGIN} \ PLAIN=${PLAIN} \ GSSAPI=${GSSAPI} \ EBONES=${EBONES} \ DOCSDIR=${DOCSDIR:S/^${PREFIX}\///} \ EXAMPLESDIR=${EXAMPLESDIR:S/^${PREFIX}\///} LDAP_MYSQL_PATCH= ldap-mysql_sasl-${PORTVERSION}/sasl-ldap+mysql.patch PKGDEINSTALL= ${WRKDIR}/pkg-deinstall PKGINSTALL= ${WRKDIR}/pkg-install PKGMESSAGE= ${WRKDIR}/pkg-message -.if ${OSVERSION} < 450000 -FMT= /usr/bin/fmt -.else FMT= /usr/bin/fmt -w 67 -.endif pre-fetch: @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.sasl .if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) .include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" .endif RC_SCRIPTS_SUB= PREFIX=${PREFIX} \ RC_SUBR=${RC_SUBR} \ PWCHECK=${PWCHECK} \ ENABLE_PWCHECK=${ENABLE_PWCHECK} \ ENABLE_SASLAUTHD=${ENABLE_SASLAUTHD} \ MYSQL_REQ=${MYSQL_REQ} PKG_SCRIPTS_SUB= PREFIX=${PREFIX} \ CYRUS_USER=${CYRUS_USER} \ CYRUS_GROUP=${CYRUS_GROUP} \ ENABLE_PWCHECK=${ENABLE_PWCHECK} \ ENABLE_SASLAUTHD=${ENABLE_SASLAUTHD} \ PWCHECK=${PWCHECK} \ PWCHECK_METHOD=${PWCHECK_METHOD} \ SASLDB=${SASLDB_NAME} post-extract: @${CP} ${FILESDIR}/pwcheck_pam.c ${WRKSRC}/pwcheck pre-patch: @(cd ${WRKSRC} && ${PATCH} -p1 < ${WRKDIR}/${LDAP_MYSQL_PATCH}) # Fix pkg-{install/deinstall/messages} post-patch: @${SED} ${PKG_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ ${.CURDIR}/pkg-install > ${PKGINSTALL} @${SED} ${PKG_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ ${.CURDIR}/pkg-deinstall > ${PKGDEINSTALL} @${SED} -e "s;%%PWCHECK_METHOD%%;${PWCHECK_METHOD};g" \ -e "s;%%PREFIX%%;${PREFIX};g" \ ${.CURDIR}/pkg-message > ${PKGMESSAGE} .ifdef LDAP_MYSQL_MSG @${ECHO_CMD} ${LDAP_MYSQL_MSG} | ${FMT} >> ${PKGMESSAGE} @${ECHO_CMD} >> ${PKGMESSAGE} .endif pre-configure: @(cd ${WRKSRC} && ${AUTOHEADER}) # Create Cyrus user and group pre-install: @${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL @if [ -f ${PREFIX}/sbin/saslauthd ]; then \ ${MV} ${PREFIX}/sbin/saslauthd ${PREFIX}/sbin/saslauthd2; \ if [ -f ${PREFIX}/man/man8/saslauthd.8 ]; then \ ${MV} ${PREFIX}/man/man8/saslauthd.8 \ ${PREFIX}/man/man8/saslauthd2.8; \ elif [ -f ${PREFIX}/man/man8/saslauthd.8.gz ]; then \ ${MV} ${PREFIX}/man/man8/saslauthd.8.gz \ ${PREFIX}/man/man8/saslauthd2.8.gz; \ fi; \ fi post-install: @${MKDIR} ${EXAMPLESDIR} @${SED} -e 's;%%PREFIX%%;${PREFIX};g' \ ${FILESDIR}/cyrus.pam > ${EXAMPLESDIR}/cyrus.pam @${SED} ${RC_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ ${FILESDIR}/pwcheck.sh > ${PREFIX}/etc/rc.d/cyrus_pwcheck.sh @${CHMOD} 755 ${PREFIX}/etc/rc.d/cyrus_pwcheck.sh @${SED} ${RC_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ ${FILESDIR}/saslauthd.sh > ${PREFIX}/etc/rc.d/saslauthd1.sh @${CHMOD} 755 ${PREFIX}/etc/rc.d/saslauthd1.sh @${SED} ${RC_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ ${FILESDIR}/cyrus_sasl1 > ${PREFIX}/etc/rc.d/cyrus_sasl1 @${CHMOD} 755 ${PREFIX}/etc/rc.d/cyrus_sasl1 ${INSTALL} -d -m 770 -o ${CYRUS_USER} -g ${CYRUS_GROUP} /var/pwcheck ${INSTALL} -d -m 770 -o ${CYRUS_USER} -g ${CYRUS_GROUP} /var/state/saslauthd1 .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for docfile in ${DOCS} @${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR} .endfor (cd ${WRKSRC}/doc ; \ for extrafile in `make -V EXTRA_DIST` ; do \ ${INSTALL_DATA} ${WRKSRC}/doc/$${extrafile} ${DOCSDIR} ; \ done) @${INSTALL_DATA} ${WRKSRC}/java/doc/draft-weltman-java-sasl-02.txt ${DOCSDIR} @${INSTALL_DATA} ${FILESDIR}/Sendmail.README ${DOCSDIR} .endif @${MV} ${PREFIX}/sbin/saslauthd ${PREFIX}/sbin/saslauthd1 @${MV} ${PREFIX}/man/man8/saslauthd.8 ${PREFIX}/man/man8/saslauthd1.8 @if [ -f ${PREFIX}/sbin/saslauthd2 ]; then \ ${MV} ${PREFIX}/sbin/saslauthd2 ${PREFIX}/sbin/saslauthd; \ if [ -f ${PREFIX}/man/man8/saslauthd2.8 ]; then \ ${MV} ${PREFIX}/man/man8/saslauthd2.8 \ ${PREFIX}/man/man8/saslauthd.8; \ elif [ -f ${PREFIX}/man/man8/saslauthd2.8.gz ]; then \ ${MV} ${PREFIX}/man/man8/saslauthd2.8.gz \ ${PREFIX}/man/man8/saslauthd.8.gz; \ fi; \ fi @PKG_PREFIX=${PREFIX} BATCH=${BATCH} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL @${CAT} ${PKGMESSAGE} post-clean: @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc .include Property changes on: head/security/cyrus-sasl/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.67 \ No newline at end of property +1.68 \ No newline at end of property Index: head/security/ipfilter2dshield/Makefile =================================================================== --- head/security/ipfilter2dshield/Makefile (revision 200764) +++ head/security/ipfilter2dshield/Makefile (revision 200765) @@ -1,55 +1,51 @@ # New ports collection makefile for: ipfilter2dshield # Date created: 2004-06-18 # Whom: Joe Barbish # # $FreeBSD$ # PORTNAME= ipfilter2dshield PORTVERSION= 1.0 CATEGORIES= security MASTER_SITES= http://www.dshield.org/clients/ DISTNAME= dshield-freebsd.pl EXTRACT_SUFX= .txt MAINTAINER= fbsd_user@a1poweruser.com COMMENT= Official DShield client for ipfilter firewall logs RUN_DEPENDS= ${SITE_PERL}/Net/Netmask.pm:${PORTSDIR}/net-mgmt/p5-Net-Netmask USE_PERL5= yes PKGMESSAGE= ${WRKDIR}/pkg-message PKGDEINSTALL= ${WRKDIR}/pkg-deinstall -.include +.include -.if ${OSVERSION} < 490000 -IGNORE= "Not supported on releases prior to 4.9" -.endif - do-extract: [ -d ${WRKDIR} ] || ${MKDIR} ${WRKDIR} ${CP} ${DISTDIR}/${DISTFILES} ${WRKDIR}/${DISTNAME} do-build: pre-install: @${SED} -e "s=%%PREFIX%%=${PREFIX}=g" \ -e "s=%%DISTNAME%%=${DISTNAME}=g" \ pkg-message > ${PKGMESSAGE} @${SED} -e "s=%%PREFIX%%=${PREFIX}=g" \ -e "s=%%PORTNAME%%=${PORTNAME}=g" \ -e "s=%%DISTNAME%%=${DISTNAME}=g" \ pkg-deinstall > ${PKGDEINSTALL} do-install: [ -d ${PREFIX}/etc/${PORTNAME} ] || ${MKDIR} ${PREFIX}/etc/${PORTNAME} ${INSTALL} -o root -g wheel -m 644 ${WRKDIR}/${DISTNAME} \ ${PREFIX}/etc/${PORTNAME}/${DISTNAME}.dist ${INSTALL} -o root -g wheel -m 760 ${WRKDIR}/${DISTNAME} ${PREFIX}/sbin post-install: @${CAT} ${PKGMESSAGE} -.include +.include Property changes on: head/security/ipfilter2dshield/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property Index: head/security/lsh/Makefile =================================================================== --- head/security/lsh/Makefile (revision 200764) +++ head/security/lsh/Makefile (revision 200765) @@ -1,66 +1,60 @@ # New ports collection makefile for: lsh secure shell # Date created: 29 MAY 2000 # Whom: Eric Schwertfeger # # $FreeBSD$ PORTNAME= lsh PORTVERSION= 2.0.3 PORTREVISION= 1 CATEGORIES= security ipv6 MASTER_SITES= ${MASTER_SITE_GNUPG} \ ftp://ftp.lysator.liu.se/pub/security/%SUBDIR%/ MASTER_SITE_SUBDIR= lsh lsh/old MAINTAINER= farrokhi@FreeBSD.org COMMENT= A secure (encrypted) remote shell compatible with ssh 2.0 BUILD_DEPENDS+= ${LOCALBASE}/include/gmp.h:${PORTSDIR}/math/libgmp4 \ ${LOCALBASE}/share/guile/1.6/slibcat:${PORTSDIR}/lang/slib-guile LIB_DEPENDS+= oop:${PORTSDIR}/devel/liboop \ gmp.7:${PORTSDIR}/math/libgmp4 GNU_CONFIGURE= yes USE_GMAKE= yes USE_GCC= 3.4+ INSTALL_TARGET= install CONFIGURE_ENV= PREFIX="${PREFIX}" CC="${CC}" CFLAGS="${CFLAGS}" CONFIGURE_ARGS+= --with-include-path=${LOCALBASE}/include CONFIGURE_ARGS+= --with-lib-path=${LOCALBASE}/lib CONFIGURE_ENV+= LDFLAGS="${LDFLAGS}" .if defined(KRB5_HOME) && exists(${KRB5_HOME}) PLIST_SUB+= KRB="" .else PLIST_SUB+= KRB="@comment " .endif .if defined(WITH_THREADS) || defined(WITH_LSH_THREADS) LDFLAGS+= ${PTHREAD_LIBS} CFLAGS+= ${PTHREAD_CFLAGS:S=""==} .endif MAN1= lsftp.1 ssh-conv.1 lshg.1 lsh.1 lsh-writekey.1 lsh-upgrade.1 \ lsh-upgrade-key.1 lsh-make-seed.1 lsh-keygen.1 \ lsh-export-key.1 lsh-decrypt-key.1 lsh-decode-key.1 \ lsh-authorize.1 MAN5= secsh.5 SPKI.5 SHA.5 DSA.5 MAN8= sftp-server.8 lshd.8 INFO= lsh nettle -.include - -.if ${OSVERSION} < 400014 -CONFIGURE_ARGS+= --without-ipv6 -.endif - post-install: .for BIN in lsh lsh-keygen lsh-writekey sexp-conv srp-gen lsh-decode-key ${STRIP_CMD} ${PREFIX}/bin/${BIN} .endfor .for SBIN in lshd ${STRIP_CMD} ${PREFIX}/sbin/${SBIN} .endfor test: (cd ${WRKSRC}/src/testsuite && ${SETENV} ${MAKE_ENV} \ ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} check) -.include +.include Property changes on: head/security/lsh/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.39 \ No newline at end of property +1.40 \ No newline at end of property Index: head/security/openbsm/Makefile =================================================================== --- head/security/openbsm/Makefile (revision 200764) +++ head/security/openbsm/Makefile (revision 200765) @@ -1,67 +1,62 @@ # New ports collection makefile for: openbsm # Date created: Jun 13 2006 # Whom: Florent Thoumie # # $FreeBSD$ # PORTNAME= openbsm DISTVERSION= 1.0-alpha12 CATEGORIES= security MASTER_SITES= http://www.trustedbsd.org/downloads/ DISTFILES= openbsm-${DISTVERSION}.tgz MAINTAINER= flz@FreeBSD.org COMMENT= Open Source Basic Security Module (BSM) Audit Implementation WRKSRC= ${WRKDIR}/${PORTNAME} GNU_CONFIGURE= yes INSTALLS_SHLIB= yes MAN1= auditreduce.1 \ praudit.1 MAN2= audit.2 \ auditctl.2 \ auditon.2 \ getaudit.2 \ getauid.2 \ setaudit.2 \ setauid.2 MAN3= au_class.3 \ au_control.3 \ au_event.3 \ au_free_token.3 \ au_io.3 \ au_mask.3 \ au_open.3 \ au_token.3 \ au_user.3 \ libbsm.3 MAN5= audit.log.5 \ audit_class.5 \ audit_control.5 \ audit_event.5 \ audit_user.5 \ audit_warn.5 MAN8= auditfilterd.8 .include -.if ${OSVERSION} < 500000 -BROKEN= does not compile on 4.X -.else .if ${OSVERSION} < 600000 BROKEN= does not package on 5.X .endif -.endif -.if ( ( ${OSVERSION} < 500000 && ${OSVERSION} > 491101 ) || \ - ( ${OSVERSION} < 600000 && ${OSVERSION} > 503100 ) || \ +.if ( ( ${OSVERSION} < 600000 && ${OSVERSION} > 503100 ) || \ ${OSVERSION} >= 600000 ) MAN8+= audit.8 \ auditd.8 PLIST_FILES+= sbin/audit \ sbin/auditd .endif .include Property changes on: head/security/openbsm/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.5 \ No newline at end of property +1.6 \ No newline at end of property Index: head/security/ppars/Makefile =================================================================== --- head/security/ppars/Makefile (revision 200764) +++ head/security/ppars/Makefile (revision 200765) @@ -1,36 +1,30 @@ # New ports collection makefile for: ppars # Date created: 2004-06-29 # Whom: Joe Barbish # # $FreeBSD$ # PORTNAME= ppars PORTVERSION= 1.0 CATEGORIES= security MASTER_SITES= http://www.dshield.org/clients/ DISTNAME= ${PORTNAME} MAINTAINER= fbsd_user@a1poweruser.com COMMENT= Proactive Probing Abuse Reporting System RUN_DEPENDS= ${SITE_PERL}/Net/Netmask.pm:${PORTSDIR}/net-mgmt/p5-Net-Netmask USE_PERL5= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} SUB_FILES= pkg-message -.include - -.if ${OSVERSION} < 490000 -IGNORE= "Not supported on releases prior to 4.9" -.endif - do-install: @${MKDIR} ${PREFIX}/sbin ${INSTALL_SCRIPT} ${WRKSRC}/*.pl ${PREFIX}/sbin ${CAT} ${PKGMESSAGE} -.include +.include Property changes on: head/security/ppars/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property