Index: head/misc/amanda-server/Makefile =================================================================== --- head/misc/amanda-server/Makefile (revision 362805) +++ head/misc/amanda-server/Makefile (revision 362806) @@ -1,220 +1,220 @@ # Created by: gpalmer # $FreeBSD$ PORTNAME= amanda PORTVERSION= 3.3.2 PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= misc MASTER_SITES= SF/amanda/amanda%20-%20stable/${PORTVERSION} PKGNAMESUFFIX?= -server -MAINTAINER= kuriyama@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT?= The Advanced Maryland Automatic Network Disk Archiver (server) RUN_DEPENDS= perl-amanda:${PORTSDIR}/misc/amanda-perl-wrapper BUILD_DEPENDS= perl-amanda:${PORTSDIR}/misc/amanda-perl-wrapper WRKSRC= ${WRKDIR}/amanda-${PORTVERSION} SLAVEDIRS= misc/amanda-client GNU_CONFIGURE= yes USES= gmake pkgconfig perl5 USE_GNOME= glib20 USE_OPENSSL= yes USE_LDCONFIG= yes CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/amanda \ --without-amlibexecdir \ --with-amandahosts --with-fqdn \ --with-dump-honor-nodump \ --prefix=${PREFIX} \ --disable-glibtest \ --with-user=${USERS} --with-group=${AMANDA_GROUP} \ --with-bsdtcp-security --with-bsdudp-security \ --with-ssh-security CONFIGURE_ENV= PERL=${LOCALBASE}/bin/perl-amanda PKG_MESSAGE= ${WRKDIR}/pkg-message SUB_FILES= pkg-message SUB_LIST= PORTSDIR=${PORTSDIR} OPTIONS_DEFINE= GNUTAR OPTIONS_DEFAULT= GNUTAR GNUTAR_DESC= use GNU tar .if defined(AMANDA_USER) USERS= ${AMANDA_USER} .else USERS?= amanda .endif .if !defined(AMANDA_GROUP) AMANDA_GROUP= amanda .endif GROUPS?= operator amanda AMANDA_GNUTAR_LISTDIR?= ${PREFIX}/var/amanda/gnutar-lists AMANDA_DATES?= ${PREFIX}/var/amanda/amandates PLIST_SUB= SHLIBVER=${PORTVERSION} AMANDA_DATES=${AMANDA_DATES} # amanda-server/amanda-client common part .if defined (AMANDA_SERVER) CONFIGURE_ARGS+= --with-index-server=${AMANDA_SERVER} CONFIGURE_ARGS+= --with-tape-server=${AMANDA_SERVER} .endif .if !defined(CLIENT_ONLY) OPTIONS_DEFINE+= PLOT SAMBA S3 PLOT_DESC= Enable ploting, requires X11 libraries SAMBA_DESC= Enable the use of smbclient S3_DESC= Enable Amazon S3 device support .endif NO_STAGE= yes .include .if ${PORT_OPTIONS:MGNUTAR} CONFIGURE_ARGS+=--with-gnutar-listdir=${AMANDA_GNUTAR_LISTDIR} \ --with-gnutar=${LOCALBASE}/bin/gtar BUILD_DEPENDS+= gtar:${PORTSDIR}/archivers/gtar RUN_DEPENDS+= gtar:${PORTSDIR}/archivers/gtar .endif # amanda-server part .if !defined(CLIENT_ONLY) SUB_FILES+= pkg-install pkg-deinstall SUB_LIST+= PERL=${PERL} SITE_PERL_REL=${SITE_PERL_REL} pre-fetch: @${ECHO} "" @${ECHO} "You may use the following build options:" @${ECHO} "" @${ECHO} " AMANDA_SERVER=server to specify a server name" @${ECHO} " The default is `uname -n`" @${ECHO} " AMANDA_USER=user to specify the default user" @${ECHO} " The default is amanda" @${ECHO} " AMANDA_GROUP=group to specify the default group" @${ECHO} " The default is amanda" @${ECHO} " AMANDA_DATES=path to client amandates file" @${ECHO} "" CONFLICTS= amanda-server-2.* amanda-server-3.2.* amanda2[56]-server-* BUILD_DEPENDS+= ${LOCALBASE}/lib/amanda/libamandad-${PORTVERSION}.so:${PORTSDIR}/misc/amanda-client RUN_DEPENDS+= ${LOCALBASE}/lib/amanda/libamandad-${PORTVERSION}.so:${PORTSDIR}/misc/amanda-client CONFIGURE_ARGS+=--without-client MAN5= disklist.5 \ tapelist.5 MAN7= amanda-changers.7 \ amanda-compatibility.7 \ amanda-devices.7 \ amanda-interactivity.7 \ amanda-taperscan.7 MAN8= amaddclient.8 amadmin.8 amaespipe.8 amcheck.8 \ amcheckdb.8 amcheckdump.8 \ amcleanup.8 \ amcleanupdisk.8 \ amcrypt.8 amcryptsimple.8 amcrypt-ossl-asym.8 amcrypt-ossl.8 \ amdevcheck.8 \ amdump.8 amfetchdump.8 amflush.8 amgetconf.8 amgpgcrypt.8 \ amlabel.8 \ amoverview.8 amreport.8 amrestore.8 amrmtape.8 \ amserverconfig.8 amstatus.8 \ amtape.8 amtoc.8 amtapetype.8 \ amvault.8 .if ${PORT_OPTIONS:MPLOT} BUILD_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot RUN_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot MAN8+= amplot.8 PLIST_SUB+= PLOT='' CONFIGURE_ARGS+= --with-gnuplot=${LOCALBASE}/bin/gnuplot .else PLIST_SUB+= PLOT='@comment ' CONFIGURE_ARGS+= --without-gnuplot .endif .if ${PORT_OPTIONS:MSAMBA} SAMBA_PORT?= samba36 BUILD_DEPENDS+= smbclient:${PORTSDIR}/net/${SAMBA_PORT} RUN_DEPENDS+= smbclient:${PORTSDIR}/net/${SAMBA_PORT} CONFIGURE_ARGS+= --with-smbclient=${LOCALBASE}/bin/smbclient .endif # If configure founds libcurl, automatically enabled it (with plist change). .if ${PORT_OPTIONS:MS3} LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+= --enable-s3-device PLIST_SUB+= S3DEVICE='' .else CONFIGURE_ARGS+= --disable-s3-device PLIST_SUB+= S3DEVICE='@comment ' .endif post-install: @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL @${CAT} ${PKGMESSAGE} # amanda-client part .else pre-fetch: @${ECHO} "" @${ECHO} "You may use the following build options:" @${ECHO} "" @${ECHO} " AMANDA_SERVER=server to specify a server name" @${ECHO} " The default is `uname -n`" @${ECHO} " AMANDA_GNUTAR_LISTDIR=dir to specify the directory that" @${ECHO} " the gnutar index files should live in" @${ECHO} " The default is ${PREFIX}/var/amanda/gnutar-lists" @${ECHO} " AMANDA_USER=user to specify the default user" @${ECHO} " The default is amanda" @${ECHO} " AMANDA_GROUP=group to specify the default group" @${ECHO} " The default is amanda" @${ECHO} " AMANDA_DATES=path to client amandates file" @${ECHO} "" CONFLICTS= amanda-client-2.* amanda-client-3.2.* amanda2[56]-client-* CONFIGURE_ARGS+=--without-server --with-amandates=${AMANDA_DATES} .if defined(AMANDA_NO_SNAPSHOT_DUMP) CFLAGS= -DFreeBSD_NO_SNAPSHOT_DUMP=t .endif MAN5= amanda-archive-format.5 \ amanda-client.conf.5 \ amanda.conf.5 MAN7= amanda-applications.7 \ amanda-auth.7 \ amanda-match.7 \ amanda-scripts.7 MAN8= amanda.8 \ amarchiver.8 \ amdump_client.8 \ amgtar.8 \ ampgsql.8 \ amraw.8 \ amrecover.8 \ amsamba.8 \ amservice.8 \ amstar.8 \ amsuntar.8 \ amzfs-sendrecv.8 \ amzfs-snapshot.8 \ script-email.8 post-install: ${MKDIR} ${AMANDA_GNUTAR_LISTDIR} ${CHOWN} ${USERS}:${AMANDA_GROUP} ${AMANDA_GNUTAR_LISTDIR} ${TOUCH} ${AMANDA_DATES} ${CHOWN} ${USERS}:${AMANDA_GROUP} ${AMANDA_DATES} ${CAT} ${PKGMESSAGE} .endif # MEMO: # Prefix @WANT_SERVER_TRUE@ for server only files. # Prefix @WANT_CLIENT_TRUE@ for client only files. # For debugging: dbprintf(_("getcmd: %s\n"), line); .include Index: head/misc/amanda25-server/Makefile =================================================================== --- head/misc/amanda25-server/Makefile (revision 362805) +++ head/misc/amanda25-server/Makefile (revision 362806) @@ -1,220 +1,220 @@ # Created by: gpalmer # $FreeBSD$ PORTNAME= amanda PORTVERSION= 2.5.1p3 PORTREVISION?= 7 PKGNAMESUFFIX?= 25-server PORTEPOCH= 1 CATEGORIES= misc MASTER_SITES= SF/amanda/amanda%20-%20stable/${PORTVERSION} -MAINTAINER= kuriyama@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT?= The Advanced Maryland Automatic Network Disk Archiver (server) WRKSRC= ${WRKDIR}/amanda-${PORTVERSION} SLAVEDIRS= misc/amanda25-client USE_AUTOTOOLS= autoconf USES= gmake USE_OPENSSL= yes PATCH_STRIP= CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/amanda \ --with-amandahosts --with-fqdn \ --with-dump-honor-nodump --with-buffered-dump \ --disable-libtool --prefix=${PREFIX} \ --with-user=${AMANDA_USER} --with-group=${AMANDA_GROUP} USE_LDCONFIG= yes SAMBA_PORT?= net/samba36 OPTIONS_DEFINE= GNUTAR SSH OPTIONS_DEFAULT= SSH GNUTAR_DESC= use GNU tar SSH_DESC= Enable ssh-auth AMANDA_USER?= operator AMANDA_GROUP?= operator AMANDA_GNUTAR_LISTDIR?= ${PREFIX}/var/amanda/gnutar-lists PLIST_SUB= SHLIBVER=${PORTVERSION} # amanda-server/amanda-client common part .if defined (AMANDA_SERVER) CONFIGURE_ARGS+= --with-index-server=${AMANDA_SERVER} CONFIGURE_ARGS+= --with-tape-server=${AMANDA_SERVER} .endif .if defined (AMANDA_CONFIG) CONFIGURE_ARGS+= --with-config=${AMANDA_CONFIG} .endif .if defined (AMANDA_UDPPORTRANGE) CONFIGURE_ARGS+= --with-udpportrange=${AMANDA_UDPPORTRANGE} .endif # AMANDA_PORTRANGE is obsoleted. Use AMANDA_TCPPORTRANGE instead. .if defined (AMANDA_PORTRANGE) AMANDA_TCPPORTRANGE= ${AMANDA_PORTRANGE} .endif .if defined (AMANDA_TCPPORTRANGE) CONFIGURE_ARGS+= --with-tcpportrange=${AMANDA_TCPPORTRANGE} .endif .if !defined(CLIENT_ONLY) OPTIONS_DEFINE+= PLOT SAMBA MTX AESPIPE PLOT_DESC= Eenable ploting, requires X11 libraries SAMBA_DESC= Enable the use of smbclient MTX_DESC= Enable the use of mtx changer scripts AESPIPE_DESC= Enable encryption. Needed by amcrypt .else OPTIONS_DEFINE+= DUMP_SNAPSHOT DUMP_SNAPSHOT_DESC= Use snapshot by using dump -L .endif NO_STAGE= yes .include .if ${PORT_OPTIONS:MSSH} CONFIGURE_ARGS+= --with-ssh-security .endif .if ${PORT_OPTIONS:MGNUTAR} CONFIGURE_ARGS+=--with-gnutar-listdir=${AMANDA_GNUTAR_LISTDIR} \ --with-gnutar=${LOCALBASE}/bin/gtar BUILD_DEPENDS= gtar:${PORTSDIR}/archivers/gtar RUN_DEPENDS= gtar:${PORTSDIR}/archivers/gtar .endif # amanda-server part .if !defined(CLIENT_ONLY) pre-fetch: @${ECHO} "" @${ECHO} "You may use the following build options:" @${ECHO} "" @${ECHO} " AMANDA_SERVER=server to specify a server name" @${ECHO} " The default is `uname -n`" @${ECHO} " AMANDA_TAPE=tape to specify the default tape device" @${ECHO} " The default is /dev/nrsa0" @${ECHO} " AMANDA_CONFIG=config to specify the default configuration" @${ECHO} " The default is user" @${ECHO} " AMANDA_USER=user to specify the default user" @${ECHO} " The default is operator" @${ECHO} " AMANDA_GROUP=group to specify the default group" @${ECHO} " The default is operator" @${ECHO} " AMANDA_TCPPORTRANGE=low,high to restrict Amanda to TCP ports" @${ECHO} " between low and high when connecting from the server" @${ECHO} " to the client for data, messages, and indexing." @${ECHO} " The default is no restriction on TCP ports." @${ECHO} " AMANDA_UDPPORTRANGE=low,high to restrict Amanda to UDP ports" @${ECHO} " between low and high when connecting from the client" @${ECHO} " to the server. Use ports below 1024." @${ECHO} " The default is no restriction on UDP ports." @${ECHO} "" post-patch: @${REINPLACE_CMD} \ -e 's|^OPENSSL=.*$$|OPENSSL=${OPENSSLBASE}/bin/openssl|' \ ${WRKSRC}/server-src/amcrypt-ossl.sh.in \ ${WRKSRC}/server-src/amcrypt-ossl-asym.sh.in USES+= perl5 BUILD_DEPENDS+= ${LOCALBASE}/sbin/amrecover:${PORTSDIR}/misc/amanda25-client RUN_DEPENDS+= ${LOCALBASE}/sbin/amrecover:${PORTSDIR}/misc/amanda25-client CONFLICTS= amanda-server-2.6.* amanda-server-3.* amanda26-server-* CONFIGURE_ARGS+=--without-client MAN8= amadmin.8 amaespipe.8 amcheck.8 \ amcheckdb.8 amcleanup.8 \ amcrypt.8 amcrypt-ossl-asym.8 amcrypt-ossl.8 amdd.8 \ amdump.8 amfetchdump.8 amflush.8 amgetconf.8 amlabel.8 ammt.8 \ amoverview.8 amreport.8 amrmtape.8 amstatus.8 \ amtape.8 amtoc.8 amverify.8 amverifyrun.8 amtapetype.8 .if ${PORT_OPTIONS:MPLOT} BUILD_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot RUN_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot MAN8+= amplot.8 PLIST_SUB+= PLOT='' .else PLIST_SUB+= PLOT='@comment ' .endif .if ${PORT_OPTIONS:MSAMBA} BUILD_DEPENDS+= smbclient:${PORTSDIR}/${SAMBA_PORT} RUN_DEPENDS+= smbclient:${PORTSDIR}/${SAMBA_PORT} CONFIGURE_ARGS+= --with-smbclient=${LOCALBASE}/bin/smbclient .endif .if ${PORT_OPTIONS:MMTX} BUILD_DEPENDS+= mtx:${PORTSDIR}/misc/mtx RUN_DEPENDS+= mtx:${PORTSDIR}/misc/mtx .endif .if ${PORT_OPTIONS:MAESPIPE} RUN_DEPENDS+= aespipe:${PORTSDIR}/security/aespipe .endif .if defined (AMANDA_TAPE) CONFIGURE_ARGS+= --with-tape-device=${AMANDA_TAPE} .endif # amanda-client part .else pre-fetch: @${ECHO} "" @${ECHO} "You may use the following build options:" @${ECHO} "" @${ECHO} " AMANDA_SERVER=server to specify a server name" @${ECHO} " The default is `uname -n`" @${ECHO} " AMANDA_CONFIG=config to specify the default configuation" @${ECHO} " The default is user" @${ECHO} " AMANDA_GNUTAR_LISTDIR=dir to specify the directory that" @${ECHO} " the gnutar index files should live in" @${ECHO} " The default is /var/amanda/gnutar-lists" @${ECHO} " AMANDA_USER=user to specify the default user" @${ECHO} " The default is operator" @${ECHO} " AMANDA_GROUP=group to specify the default group" @${ECHO} " The default is operator" @${ECHO} " AMANDA_TCPPORTRANGE=low,high to restrict Amanda to TCP ports" @${ECHO} " between low and high when connecting from the server" @${ECHO} " to the client for data, messages, and indexing." @${ECHO} " The default is no restriction on TCP ports." @${ECHO} " AMANDA_UDPPORTRANGE=low,high to restrict Amanda to UDP ports" @${ECHO} " between low and high when connecting from the client" @${ECHO} " to the server. Use ports below 1024." @${ECHO} " The default is no restriction on UDP ports." @${ECHO} "" CONFLICTS= amanda-client-2.6.* amanda-client-3.* amanda26-client-* CONFIGURE_ARGS+=--without-server MAN5= amanda.conf.5 amanda-client.conf.5 MAN8= amanda.8 amrecover.8 amrestore.8 post-install: ${MKDIR} ${PREFIX}/share/examples/amanda ${CP} -R ${WRKSRC}/example/amanda.conf \ ${WRKSRC}/example/chg-multi.conf \ ${WRKSRC}/example/chg-scsi.conf \ ${WRKSRC}/example/disklist \ ${PREFIX}/share/examples/amanda ${MKDIR} ${AMANDA_GNUTAR_LISTDIR} ${CHOWN} ${AMANDA_USER}:${AMANDA_GROUP} ${AMANDA_GNUTAR_LISTDIR} ${TOUCH} /etc/amandates ${CHOWN} ${AMANDA_USER}:${AMANDA_GROUP} /etc/amandates .if ${PORT_OPTIONS:MDUMP_SNAPSHOT} EXTRA_PATCHES= ${FILESDIR}/extra-patch-sendbackup-dump.c .endif .endif # Maintainer TODO: # o amanda-server installs lib/libamandad.a which should be handled by # amanda-client only. .include Index: head/misc/amanda26-server/Makefile =================================================================== --- head/misc/amanda26-server/Makefile (revision 362805) +++ head/misc/amanda26-server/Makefile (revision 362806) @@ -1,228 +1,228 @@ # Created by: gpalmer # $FreeBSD$ PORTNAME= amanda PORTVERSION= 2.6.1p2 PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= misc MASTER_SITES= SF/amanda/amanda%20-%20stable/${PORTVERSION} PKGNAMESUFFIX?= 26-server -MAINTAINER= kuriyama@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT?= The Advanced Maryland Automatic Network Disk Archiver (server) WRKSRC= ${WRKDIR}/amanda-${PORTVERSION} SLAVEDIRS= misc/amanda26-client USES= gmake perl5 pkgconfig GNU_CONFIGURE= yes USE_GNOME= glib20 USE_OPENSSL= yes PATCH_STRIP= CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/amanda \ --without-amlibexecdir \ --with-amandahosts --with-fqdn \ --with-dump-honor-nodump --with-buffered-dump \ --prefix=${PREFIX} \ --disable-glibtest \ --with-user=${AMANDA_USER} --with-group=${AMANDA_GROUP} \ --with-bsdtcp-security --with-bsdudp-security \ --with-ssh-security USE_LDCONFIG= yes OPTIONS_DEFINE= GNUTAR GNUTAR_DESC= use GNU tar AMANDA_USER?= operator AMANDA_GROUP?= operator AMANDA_GNUTAR_LISTDIR?= ${PREFIX}/var/amanda/gnutar-lists AMANDA_DATES?= ${PREFIX}/var/amanda/amandates PLIST_SUB= SHLIBVER=${PORTVERSION} AMANDA_DATES=${AMANDA_DATES} # amanda-server/amanda-client common part .if defined (AMANDA_SERVER) CONFIGURE_ARGS+= --with-index-server=${AMANDA_SERVER} CONFIGURE_ARGS+= --with-tape-server=${AMANDA_SERVER} .endif .if defined (AMANDA_CONFIG) CONFIGURE_ARGS+= --with-config=${AMANDA_CONFIG} .endif .if !defined(CLIENT_ONLY) OPTIONS_DEFINE+= PLOT SAMBA MTX AESPIPE S3 PLOT_DESC= Enable ploting, requires X11 libraries SAMBA_DESC= Enable the use of smbclient MTX_DESC= Enable the use of mtx changer scripts AESPIPE_DESC= Enable encryption. Needed by amcrypt S3_DESC= Enable Amazon S3 device support .else OPTIONS_DEFINE+= ZFSCOMP ZFSCOMP_DESC= Accurate estimation of compressed ZFS filesystems .endif NO_STAGE= yes .include .if ${PORT_OPTIONS:MGNUTAR} CONFIGURE_ARGS+=--with-gnutar-listdir=${AMANDA_GNUTAR_LISTDIR} \ --with-gnutar=${LOCALBASE}/bin/gtar BUILD_DEPENDS= gtar:${PORTSDIR}/archivers/gtar RUN_DEPENDS= gtar:${PORTSDIR}/archivers/gtar .endif # amanda-server part .if !defined(CLIENT_ONLY) pre-fetch: @${ECHO} "" @${ECHO} "You may use the following build options:" @${ECHO} "" @${ECHO} " AMANDA_SERVER=server to specify a server name" @${ECHO} " The default is `uname -n`" @${ECHO} " AMANDA_TAPE=tape to specify the default tape device" @${ECHO} " The default is /dev/nrsa0" @${ECHO} " AMANDA_CONFIG=config to specify the default configuration" @${ECHO} " The default is DailySet1" @${ECHO} " AMANDA_USER=user to specify the default user" @${ECHO} " The default is operator" @${ECHO} " AMANDA_GROUP=group to specify the default group" @${ECHO} " The default is operator" @${ECHO} " AMANDA_DATES=path to client amandates file" @${ECHO} "" CONFLICTS= amanda-server-2.5.* amanda-server-3.* amanda25-server-* BUILD_DEPENDS+= ${LOCALBASE}/lib/amanda/libamandad-${PORTVERSION}.so:${PORTSDIR}/misc/amanda26-client RUN_DEPENDS+= ${LOCALBASE}/lib/amanda/libamandad-${PORTVERSION}.so:${PORTSDIR}/misc/amanda26-client CONFIGURE_ARGS+=--without-client MAN5= disklist.5 \ tapelist.5 MAN7= amanda-changers.7 \ amanda-devices.7 MAN8= amaddclient.8 amadmin.8 amaespipe.8 amcheck.8 \ amcheckdb.8 amcheckdump.8 amcleanup.8 \ amcrypt.8 amcryptsimple.8 amcrypt-ossl-asym.8 amcrypt-ossl.8 \ amdevcheck.8 \ amdump.8 amfetchdump.8 amflush.8 amgetconf.8 amgpgcrypt.8 \ amlabel.8 \ amoverview.8 amreport.8 amrestore.8 amrmtape.8 \ amserverconfig.8 amservice.8 amstatus.8 \ amtape.8 amtoc.8 amtapetype.8 \ amvault.8 .if ${PORT_OPTIONS:MPLOT} BUILD_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot RUN_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot MAN8+= amplot.8 PLIST_SUB+= PLOT='' CONFIGURE_ARGS+= --with-gnuplot=${LOCALBASE}/bin/gnuplot .else PLIST_SUB+= PLOT='@comment ' CONFIGURE_ARGS+= --without-gnuplot .endif .if ${PORT_OPTIONS:MSAMBA} SAMBA_PORT?= samba36 BUILD_DEPENDS+= smbclient:${PORTSDIR}/net/${SAMBA_PORT} RUN_DEPENDS+= smbclient:${PORTSDIR}/net/${SAMBA_PORT} CONFIGURE_ARGS+= --with-smbclient=${LOCALBASE}/bin/smbclient .endif .if ${PORT_OPTIONS:MMTX} BUILD_DEPENDS+= mtx:${PORTSDIR}/misc/mtx RUN_DEPENDS+= mtx:${PORTSDIR}/misc/mtx .endif .if ${PORT_OPTIONS:MAESPIPE} RUN_DEPENDS+= aespipe:${PORTSDIR}/security/aespipe .else .endif # If configure founds libcurl, automatically enabled it (with plist change). .if ${PORT_OPTIONS:MS3} LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+= --enable-s3-device PLIST_SUB+= S3DEVICE='' .else CONFIGURE_ARGS+= --disable-s3-device PLIST_SUB+= S3DEVICE='@comment ' .endif .if defined (AMANDA_TAPE) CONFIGURE_ARGS+= --with-tape-device=${AMANDA_TAPE} .endif # amanda-client part .else pre-fetch: @${ECHO} "" @${ECHO} "You may use the following build options:" @${ECHO} "" @${ECHO} " AMANDA_SERVER=server to specify a server name" @${ECHO} " The default is `uname -n`" @${ECHO} " AMANDA_CONFIG=config to specify the default configuation" @${ECHO} " The default is DailySet1" @${ECHO} " AMANDA_GNUTAR_LISTDIR=dir to specify the directory that" @${ECHO} " the gnutar index files should live in" @${ECHO} " The default is ${PREFIX}/var/amanda/gnutar-lists" @${ECHO} " AMANDA_USER=user to specify the default user" @${ECHO} " The default is operator" @${ECHO} " AMANDA_GROUP=group to specify the default group" @${ECHO} " The default is operator" @${ECHO} " AMANDA_DATES=path to client amandates file" @${ECHO} "" CONFLICTS= amanda-client-2.5.* amanda-client-3.* amanda25-client-* CONFIGURE_ARGS+=--without-server --with-amandates=${AMANDA_DATES} MAN5= amanda-archive-format.5 \ amanda-client.conf.5 \ amanda.conf.5 MAN7= amanda-applications.7 \ amanda-auth.7 \ amanda-scripts.7 MAN8= amanda.8 \ amarchiver.8 \ amgtar.8 \ amrecover.8 \ amsamba.8 \ amstar.8 \ amzfs-sendrecv.8 \ amzfs-snapshot.8 \ script-email.8 post-install: .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${EXAMPLESDIR} ${CP} -R ${WRKSRC}/example/chg-multi.conf \ ${WRKSRC}/example/chg-scsi.conf \ ${WRKSRC}/example/disklist \ ${EXAMPLESDIR} .endif ${MKDIR} ${AMANDA_GNUTAR_LISTDIR} ${CHOWN} ${AMANDA_USER}:${AMANDA_GROUP} ${AMANDA_GNUTAR_LISTDIR} ${TOUCH} ${AMANDA_DATES} ${CHOWN} ${AMANDA_USER}:${AMANDA_GROUP} ${AMANDA_DATES} .endif .if ${PORT_OPTIONS:MZFSCOMP} EXTRA_PATCHES= ${FILESDIR}/extra-patch-application-src::amzfs-sendrecv.pl .endif # MEMO: # Prefix @WANT_SERVER_TRUE@ for server only files. # Prefix @WANT_CLIENT_TRUE@ for client only files. # For debugging: dbprintf(_("getcmd: %s\n"), line); # Maintainer TODO: # o amanda-server installs libexec/amanda/amandad, sbin/amarchiver # which should be handled by amanda-client only. # o pthread issue: http://wiki.zmanda.com/index.php/Installation/OS_Specific_Notes/Installing_Amanda_on_FreeBSD#Threading_and_-pthread .include Index: head/misc/amanda32-server/Makefile =================================================================== --- head/misc/amanda32-server/Makefile (revision 362805) +++ head/misc/amanda32-server/Makefile (revision 362806) @@ -1,215 +1,215 @@ # Created by: gpalmer # $FreeBSD$ PORTNAME= amanda PORTVERSION= 3.2.3 PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= misc MASTER_SITES= SF/amanda/amanda%20-%20stable/${PORTVERSION} PKGNAMESUFFIX?= 32-server -MAINTAINER= kuriyama@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT?= The Advanced Maryland Automatic Network Disk Archiver (server) RUN_DEPENDS= perl-amanda:${PORTSDIR}/misc/amanda-perl-wrapper BUILD_DEPENDS= perl-amanda:${PORTSDIR}/misc/amanda-perl-wrapper WRKSRC= ${WRKDIR}/amanda-${PORTVERSION} SLAVEDIRS= misc/amanda32-client GNU_CONFIGURE= yes USES= gmake perl5 pkgconfig USE_GNOME= glib20 USE_OPENSSL= yes USE_LDCONFIG= yes CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/amanda \ --without-amlibexecdir \ --with-amandahosts --with-fqdn \ --with-dump-honor-nodump \ --prefix=${PREFIX} \ --disable-glibtest \ --with-user=${USERS} --with-group=${AMANDA_GROUP} \ --with-bsdtcp-security --with-bsdudp-security \ --with-ssh-security CONFIGURE_ENV= PERL=${LOCALBASE}/bin/perl-amanda PKG_MESSAGE= ${WRKDIR}/pkg-message SUB_FILES= pkg-message SUB_LIST= PORTSDIR=${PORTSDIR} OPTIONS_DEFINE= GNUTAR OPTIONS_DEFAULT= GNUTAR GNUTAR_DESC= Use GNU tar .if defined(AMANDA_USER) USERS= ${AMANDA_USER} .else USERS?= amanda .endif .if !defined(AMANDA_GROUP) AMANDA_GROUP= amanda .endif GROUPS?= operator amanda AMANDA_GNUTAR_LISTDIR?= ${PREFIX}/var/amanda/gnutar-lists AMANDA_DATES?= ${PREFIX}/var/amanda/amandates PLIST_SUB= SHLIBVER=${PORTVERSION} AMANDA_DATES=${AMANDA_DATES} # amanda-server/amanda-client common part .if defined (AMANDA_SERVER) CONFIGURE_ARGS+= --with-index-server=${AMANDA_SERVER} CONFIGURE_ARGS+= --with-tape-server=${AMANDA_SERVER} .endif .if !defined(CLIENT_ONLY) OPTIONS_DEFINE+= PLOT SAMBA S3 PLOT_DESC= Enable ploting, requires X11 libraries SAMBA_DESC= Enable the use of smbclient S3_DESC= Enable Amazon S3 device support .endif NO_STAGE= yes .include .if ${PORT_OPTIONS:MGNUTAR} CONFIGURE_ARGS+=--with-gnutar-listdir=${AMANDA_GNUTAR_LISTDIR} \ --with-gnutar=${LOCALBASE}/bin/gtar BUILD_DEPENDS+= gtar:${PORTSDIR}/archivers/gtar RUN_DEPENDS+= gtar:${PORTSDIR}/archivers/gtar .endif # amanda-server part .if !defined(CLIENT_ONLY) SUB_FILES+= pkg-install pkg-deinstall SUB_LIST+= PERL=${PERL} SITE_PERL_REL=${SITE_PERL_REL} pre-fetch: @${ECHO} "" @${ECHO} "You may use the following build options:" @${ECHO} "" @${ECHO} " AMANDA_SERVER=server to specify a server name" @${ECHO} " The default is `uname -n`" @${ECHO} " AMANDA_USER=user to specify the default user" @${ECHO} " The default is amanda" @${ECHO} " AMANDA_GROUP=group to specify the default group" @${ECHO} " The default is amanda" @${ECHO} " AMANDA_DATES=path to client amandates file" @${ECHO} "" CONFLICTS= amanda-server-2.* amanda-server-3.3.* amanda2[56]-server-* BUILD_DEPENDS+= ${LOCALBASE}/lib/amanda/libamandad-${PORTVERSION}.so:${PORTSDIR}/misc/amanda32-client RUN_DEPENDS+= ${LOCALBASE}/lib/amanda/libamandad-${PORTVERSION}.so:${PORTSDIR}/misc/amanda32-client CONFIGURE_ARGS+=--without-client MAN5= disklist.5 \ tapelist.5 MAN7= amanda-changers.7 \ amanda-compatibility.7 \ amanda-devices.7 \ amanda-taperscan.7 MAN8= amaddclient.8 amadmin.8 amaespipe.8 amcheck.8 \ amcheckdb.8 amcheckdump.8 amcleanup.8 \ amcrypt.8 amcryptsimple.8 amcrypt-ossl-asym.8 amcrypt-ossl.8 \ amdevcheck.8 \ amdump.8 amfetchdump.8 amflush.8 amgetconf.8 amgpgcrypt.8 \ amlabel.8 \ amoverview.8 amreport.8 amrestore.8 amrmtape.8 \ amserverconfig.8 amservice.8 amstatus.8 \ amtape.8 amtoc.8 amtapetype.8 \ amvault.8 .if ${PORT_OPTIONS:MPLOT} BUILD_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot RUN_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot MAN8+= amplot.8 PLIST_SUB+= PLOT='' CONFIGURE_ARGS+= --with-gnuplot=${LOCALBASE}/bin/gnuplot .else PLIST_SUB+= PLOT='@comment ' CONFIGURE_ARGS+= --without-gnuplot .endif .if ${PORT_OPTIONS:MSAMBA} SAMBA_PORT?= samba36 BUILD_DEPENDS+= smbclient:${PORTSDIR}/net/${SAMBA_PORT} RUN_DEPENDS+= smbclient:${PORTSDIR}/net/${SAMBA_PORT} CONFIGURE_ARGS+= --with-smbclient=${LOCALBASE}/bin/smbclient .endif # If configure founds libcurl, automatically enabled it (with plist change). .if ${PORT_OPTIONS:MS3} LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+= --enable-s3-device PLIST_SUB+= S3DEVICE='' .else CONFIGURE_ARGS+= --disable-s3-device PLIST_SUB+= S3DEVICE='@comment ' .endif post-install: @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL @${CAT} ${PKGMESSAGE} # amanda-client part .else pre-fetch: @${ECHO} "" @${ECHO} "You may use the following build options:" @${ECHO} "" @${ECHO} " AMANDA_SERVER=server to specify a server name" @${ECHO} " The default is `uname -n`" @${ECHO} " AMANDA_GNUTAR_LISTDIR=dir to specify the directory that" @${ECHO} " the gnutar index files should live in" @${ECHO} " The default is ${PREFIX}/var/amanda/gnutar-lists" @${ECHO} " AMANDA_USER=user to specify the default user" @${ECHO} " The default is amanda" @${ECHO} " AMANDA_GROUP=group to specify the default group" @${ECHO} " The default is amanda" @${ECHO} " AMANDA_DATES=path to client amandates file" @${ECHO} "" CONFLICTS= amanda-client-2.* amanda-client-3.3.* amanda2[56]-client-* CONFIGURE_ARGS+=--without-server --with-amandates=${AMANDA_DATES} .if defined(AMANDA_NO_SNAPSHOT_DUMP) CFLAGS= -DFreeBSD_NO_SNAPSHOT_DUMP=t .endif MAN5= amanda-archive-format.5 \ amanda-client.conf.5 \ amanda.conf.5 MAN7= amanda-applications.7 \ amanda-auth.7 \ amanda-match.7 \ amanda-scripts.7 MAN8= amanda.8 \ amarchiver.8 \ amgtar.8 \ ampgsql.8 \ amraw.8 \ amrecover.8 \ amsamba.8 \ amstar.8 \ amsuntar.8 \ amzfs-sendrecv.8 \ amzfs-snapshot.8 \ script-email.8 post-install: ${MKDIR} ${AMANDA_GNUTAR_LISTDIR} ${CHOWN} ${USERS}:${AMANDA_GROUP} ${AMANDA_GNUTAR_LISTDIR} ${TOUCH} ${AMANDA_DATES} ${CHOWN} ${USERS}:${AMANDA_GROUP} ${AMANDA_DATES} ${CAT} ${PKGMESSAGE} .endif # MEMO: # Prefix @WANT_SERVER_TRUE@ for server only files. # Prefix @WANT_CLIENT_TRUE@ for client only files. # For debugging: dbprintf(_("getcmd: %s\n"), line); .include Index: head/misc/c-hey/Makefile =================================================================== --- head/misc/c-hey/Makefile (revision 362805) +++ head/misc/c-hey/Makefile (revision 362806) @@ -1,29 +1,29 @@ # Created by: Philip Reynolds # $FreeBSD$ PORTNAME= c-hey PORTVERSION= 2.1 CATEGORIES= misc MASTER_SITES= http://www.redbrick.dcu.ie/~c-hey/src.gzipped/ DISTNAME= c-hey2.1 -MAINTAINER= philip.reynolds@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Terminal based instant messaging utility DEPRECATED= Fails to build with new utmpx EXPIRATION_DATE= 2014-07-23 GNU_CONFIGURE= yes MAN1= c-hey.1 MLINKS= c-hey.1 hey.1 PLIST_FILES= bin/c-hey bin/hey NO_STAGE= yes .include .if ${OSVERSION} > 900007 BROKEN= fails to build with new utmpx .endif .include Index: head/misc/color-theme.el/Makefile =================================================================== --- head/misc/color-theme.el/Makefile (revision 362805) +++ head/misc/color-theme.el/Makefile (revision 362806) @@ -1,40 +1,40 @@ # Created by: Denis Shaposhnikov # $FreeBSD$ PORTNAME= color-theme.el PORTVERSION= 6.6.0 PORTREVISION= 12 CATEGORIES= misc elisp MASTER_SITES= http://download.gna.org/color-theme/ PKGNAMESUFFIX= -${EMACS_NAME} DISTNAME= color-theme-${PORTVERSION} -MAINTAINER= dsh@vlink.ru +MAINTAINER= ports@FreeBSD.org COMMENT= Emacs-Lisp package with more than 50 color themes USE_EMACS= yes PORTDOCS= AUTHORS BUGS COPYING ChangeLog README ELISPDIR= ${PREFIX}/${EMACS_SITE_LISPDIR}/color-theme ELISPFILES= color-theme.el color-theme.elc themes NO_STAGE= yes do-build: (cd ${WRKSRC}; \ ${EMACS_CMD} -batch -q -f batch-byte-compile color-theme.el) do-install: ${MKDIR} ${ELISPDIR} (cd ${WRKSRC} && \ ${COPYTREE_SHARE} "${ELISPFILES}" ${ELISPDIR}) (cd ${ELISPDIR}/themes; \ ${EMACS_CMD} -batch -q -f batch-byte-compile *.el) .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} . for i in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/$i ${DOCSDIR} . endfor .endif .include Index: head/misc/cuecat/Makefile =================================================================== --- head/misc/cuecat/Makefile (revision 362805) +++ head/misc/cuecat/Makefile (revision 362806) @@ -1,54 +1,54 @@ # Created by: mwm@mired.org # $FreeBSD$ PORTNAME= cuecat PORTVERSION= 1.1 PORTREVISION= 4 CATEGORIES= misc python MASTER_SITES= http://www.mired.org/downloads/ -MAINTAINER= mwm@mired.org +MAINTAINER= ports@FreeBSD.org COMMENT= Tools for decoding and using the output of a :Cue:Cat(TM) wand scanner .if !defined(WITHOUT_X11) RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:${PORTSDIR}/x11-toolkits/py-tkinter \ ${PYTHON_SITELIBDIR}/Pmw/__init__.py:${PORTSDIR}/x11-toolkits/py-Pmw .endif NO_BUILD= yes MAN1= cuecat.1 .if !defined(WITHOUT_X11) MAN1+= xcuecat.1 .endif USE_PYTHON= yes WRKSRC= ${WRKDIR}/cuecat NO_STAGE= yes pre-install: @${MV} ${WRKSRC}/cuecat.py ${WRKSRC}/cuecat.py-orig @${SED} 's;/usr/opt/bin/python;${PYTHON_CMD};' ${WRKSRC}/cuecat.py-orig >${WRKSRC}/cuecat.py @${MV} ${WRKSRC}/barcode.py ${WRKSRC}/barcode.py-orig @${SED} 's;/usr/opt/bin/python;${PYTHON_CMD};' ${WRKSRC}/barcode.py-orig >${WRKSRC}/barcode.py .if !defined(WITHOUT_X11) @${MV} ${WRKSRC}/xcuecat.py ${WRKSRC}/xcuecat.py-orig @${SED} 's;/usr/opt/bin/python;${PYTHON_CMD};' ${WRKSRC}/xcuecat.py-orig >${WRKSRC}/xcuecat.py .endif do-install: ${INSTALL_SCRIPT} ${WRKSRC}/cuecat.py ${PYTHON_SITELIBDIR} ${INSTALL_SCRIPT} ${WRKSRC}/barcode.py ${PYTHON_SITELIBDIR} ${PYTHON_CMD} -O -c "import barcode, cuecat" ${LN} -sf ${PYTHON_SITELIBDIR}/cuecat.py ${PREFIX}/bin/cuecat ${INSTALL_MAN} ${WRKSRC}/cuecat.1 ${PREFIX}/man/man1 .if !defined(WITHOUT_X11) ${INSTALL_SCRIPT} ${WRKSRC}/xcuecat.py ${PREFIX}/bin/xcuecat ${INSTALL_MAN} ${WRKSRC}/xcuecat.1 ${PREFIX}/man/man1 .endif .if defined(WITHOUT_X11) post-install: $(MV) ${TMPPLIST} ${TMPPLIST}.orig ${GREP} -v xcuecat ${TMPPLIST}.orig > ${TMPPLIST} .endif .include Index: head/misc/gcstar/Makefile =================================================================== --- head/misc/gcstar/Makefile (revision 362805) +++ head/misc/gcstar/Makefile (revision 362806) @@ -1,59 +1,59 @@ # Created by: Dominique Goncalves # $FreeBSD$ PORTNAME= gcstar PORTVERSION= 1.7.0 PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= http://download.gna.org/gcstar/ \ http://djdomics.free.fr/distfiles/ -MAINTAINER= dominique.goncalves@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Open source application for managing your collections RUN_DEPENDS= p5-Gtk2>=0:${PORTSDIR}/x11-toolkits/p5-Gtk2 \ p5-XML-LibXML>=0:${PORTSDIR}/textproc/p5-XML-LibXML \ p5-Archive-Tar>=0:${PORTSDIR}/archivers/p5-Archive-Tar \ p5-Archive-Zip>=0:${PORTSDIR}/archivers/p5-Archive-Zip \ p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ p5-MP3-Info>=0:${PORTSDIR}/audio/p5-MP3-Info \ p5-MP3-Tag>=0:${PORTSDIR}/audio/p5-MP3-Tag \ p5-Ogg-Vorbis-Header-PurePerl>=0:${PORTSDIR}/audio/p5-Ogg-Vorbis-Header-PurePerl \ p5-XML-Simple>=0:${PORTSDIR}/textproc/p5-XML-Simple \ p5-Time-Piece>=0:${PORTSDIR}/devel/p5-Time-Piece \ p5-Gtk2-Spell>=0:${PORTSDIR}/devel/p5-Gtk2-Spell \ p5-DateTime-Format-Strptime>=0:${PORTSDIR}/devel/p5-DateTime-Format-Strptime \ p5-Date-Calc>=0:${PORTSDIR}/devel/p5-Date-Calc \ p5-Switch>0:${PORTSDIR}/lang/p5-Switch \ p5-Gnome2-VFS>=0:${PORTSDIR}/x11-toolkits/p5-Gnome2-VFS \ p5-Net-FreeDB>=0:${PORTSDIR}/audio/p5-Net-FreeDB \ p5-Sort-Naturally>=0:${PORTSDIR}/textproc/p5-Sort-Naturally \ p5-GD>=0:${PORTSDIR}/graphics/p5-GD \ p5-GD-Graph>=0:${PORTSDIR}/graphics/p5-GD-Graph \ p5-GD-TextUtil>=0:${PORTSDIR}/graphics/p5-GD-TextUtil MAN1= gcstar.1 MANCOMPRESSED= yes WRKSRC= ${WRKDIR}/${PORTNAME} USE_GNOME= desktopfileutils USES= perl5 USE_PERL5= run NO_BUILD= yes NO_STAGE= yes do-install: @${MKDIR} ${PREFIX}/share/mime/packages @${FIND} ${WRKSRC}/ -name '*.orig' -delete ${PERL} ${WRKSRC}/install --prefix ${PREFIX} --noclean ${INSTALL_DATA} ${WRKSRC}/share/applications/gcstar.desktop \ ${PREFIX}/share/applications/gcstar.desktop ${INSTALL_DATA} ${WRKSRC}/share/applications/gcstar.xml \ ${PREFIX}/share/mime/packages/gcstar.xml ${INSTALL_DATA} ${WRKSRC}/share/gcstar/icons/gcstar_48x48.png \ ${PREFIX}/share/pixmaps/gcstar.png post-install: -@update-desktop-database .include Index: head/misc/gnustep-examples/Makefile =================================================================== --- head/misc/gnustep-examples/Makefile (revision 362805) +++ head/misc/gnustep-examples/Makefile (revision 362806) @@ -1,27 +1,27 @@ # $FreeBSD$ PORTNAME= gnustep-examples PORTVERSION= 1.4.0 CATEGORIES= misc gnustep MASTER_SITES= ${MASTER_SITE_GNUSTEP} MASTER_SITE_SUBDIR= usr-apps -MAINTAINER= theraven@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= GNUstep example applications USE_GNUSTEP= yes USE_GNUSTEP_BACK= yes USE_GNUSTEP_BUILD= yes USE_GNUSTEP_INSTALL= yes USE_GL= yes WRKSRC= ${WRKDIR}/${DISTNAME} USE_GNUSTEP_MAKE_DIRS+= . gui/Finger gui/GFractal gui/HostAddress gui/MyGL MAKE_ENV+= GNUSTEP_INSTALLATION_DIR=${GNUSTEP_LOCAL_ROOT} NO_STAGE= yes post-patch: ${REINPLACE_CMD} -e 's|^//|#|' \ ${WRKSRC}/gui/GFractal/GNUmakefile .include Index: head/misc/latex-mk/Makefile =================================================================== --- head/misc/latex-mk/Makefile (revision 362805) +++ head/misc/latex-mk/Makefile (revision 362806) @@ -1,25 +1,25 @@ # Created by: ijliao # $FreeBSD$ PORTNAME= latex-mk PORTVERSION= 2.1 PORTREVISION= 3 CATEGORIES= misc print MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} -MAINTAINER= jlaffaye@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Collection of makefile and scripts for LaTeX documents BUILD_DEPENDS= texi2dvi:${PORTSDIR}/print/texinfo RUN_DEPENDS= texi2dvi:${PORTSDIR}/print/texinfo USE_TEX= latex USES= gmake GNU_CONFIGURE= yes LICENSE= BSD INFO= latex-mk NO_STAGE= yes .include Index: head/misc/libhome/Makefile =================================================================== --- head/misc/libhome/Makefile (revision 362805) +++ head/misc/libhome/Makefile (revision 362806) @@ -1,93 +1,93 @@ # Created by: Xavier Beaudouin # $FreeBSD$ PORTNAME= libhome PORTVERSION= 0.10.2 PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= ftp://ftp.oav.net/pll/ SF/pll/${PORTNAME}/${PORTVERSION} -MAINTAINER= kiwi@oav.net +MAINTAINER= ports@FreeBSD.org COMMENT= Library providing a getpwname() emulation OPTIONS_DEFINE= LDAP MYSQL BDB PAM PGSQL OPTIONS_DEFAULT= LDAP MYSQL BDB LDAP_DESC= Support for LDAP queries MYSQL_DESC= Support for MySQL queries BDB_DESC= Support for Berkeley DB PAM_DESC= Support for PAM (Experimental) PGSQL_DESC= Support for PostgreSQL (Experimental) GNU_CONFIGURE= yes USE_LDCONFIG= yes NO_STAGE= yes .include .if defined(LIBHOME_WITH_BDB_VER) WITH_BDB_VER= ${LIBHOME_WITH_BDB_VER} .endif CONFIGURE_ARGS+= --with-proxy --with-nss .if ${PORT_OPTIONS:MLDAP} USE_OPENLDAP= yes CONFIGURE_ARGS+= --with-ldap=${LOCALBASE}/include .else CONFIGURE_ARGS+= --without-ldap .endif .if ${PORT_OPTIONS:MMYSQL} USE_MYSQL= yes CONFIGURE_ARGS+= --with-mysql=${LOCALBASE}/include/mysql .else CONFIGURE_ARGS+= --without-mysql .endif .if defined(WITH_MDB3) || defined(WITH_DB4) WITH_BDB= yes OBSOLETE_BDB_VAR= WITH_DB3 WITH_DB4 IGNORE= Use 'make config' to select Berkeley DB. .endif .if ${PORT_OPTIONS:MBDB} USE_BDB= yes INVALID_BDB_VER= 2 . if defined(WITH_BDB_VER) && ${WITH_BDB_VER} == 3 CONFIGURE_ARGS+= --with-db3=${BDB_INCLUDE_DIR} --without-db4 . else CONFIGURE_ARGS+= --without-db3 --with-db4=${BDB_INCLUDE_DIR} . endif CONFIGURE_ARGS+= --with-db-libdir=${BDB_LIB_DIR} .else CONFIGURE_ARGS+= --without-db3 --without-db4 .endif .if ${PORT_OPTIONS:MPAM} CONFIGURE_ARGS+= --with-pam .else CONFIGURE_ARGS+= --without-pam .endif .if ${PORT_OPTIONS:MPGSQL} CONFIGURE_ARGS+= --with-pgsql USE_PGSQL= YES .else CONFIGURE_ARGS+= --without-pgsql .endif MAN5= home.conf.5 MAN8= home_proxy.8 post-patch: @${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/ltconfig ${WRKSRC}/configure .if ${PORT_OPTIONS:MBDB} @${REINPLACE_CMD} -e 's;db-4.3 db-4.2;${BDB_LIB_NAME};g' \ ${WRKSRC}/configure .endif post-install: ${INSTALL_DATA} ${WRKSRC}/home.conf ${PREFIX}/etc/home.conf.dist ${INSTALL_SCRIPT} ${WRKSRC}/rc/freebsd/home_proxy.sh ${PREFIX}/etc/rc.d/home_proxy.sh .include Index: head/misc/quranref/Makefile =================================================================== --- head/misc/quranref/Makefile (revision 362805) +++ head/misc/quranref/Makefile (revision 362806) @@ -1,23 +1,23 @@ # Created by: Kim Scarborough # $FreeBSD$ PORTNAME= quranref PORTVERSION= 1.01 PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= http://www.unknown.nu/ports/ -MAINTAINER= user@unknown.nu +MAINTAINER= ports@FreeBSD.org COMMENT= Interactive Quran (Koran) BUILD_DEPENDS= icont:${PORTSDIR}/lang/icon NO_STAGE= yes post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.2000 ${DOCSDIR} .endif .include Index: head/misc/wminfo/Makefile =================================================================== --- head/misc/wminfo/Makefile (revision 362805) +++ head/misc/wminfo/Makefile (revision 362806) @@ -1,37 +1,37 @@ # Created by: Thomas Kempka # $FreeBSD$ PORTNAME= wminfo PORTVERSION= 1.51 PORTREVISION= 1 CATEGORIES= misc windowmaker MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= pav -MAINTAINER= t.kempka@web.de +MAINTAINER= ports@FreeBSD.org COMMENT= Dockapp to run shell scripts and display the output DEPRECATED= Fails to build with new utmpx EXPIRATION_DATE= 2014-07-23 WRKSRC= ${WRKDIR}/${PORTNAME}/${PORTNAME} USE_XORG= xpm NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|$$(LIBS)$$|& $$(OBJS)|g' \ -e 's|/usr/X11R6|$$(LOCALBASE)|g' \ -e 's|/share/include|/include|g' \ ${WRKSRC}/Makefile do-install: ${INSTALL_PROGRAM} ${WRKSRC}/wminfo ${PREFIX}/bin .include .if ${OSVERSION} > 900007 BROKEN= fails to build with new utmpx .endif .include Index: head/misc/xfce4-artwork/Makefile =================================================================== --- head/misc/xfce4-artwork/Makefile (revision 362805) +++ head/misc/xfce4-artwork/Makefile (revision 362806) @@ -1,19 +1,19 @@ # Created by: Dmitry Sivachenko # $FreeBSD$ PORTNAME= xfce4-artwork PORTVERSION= 0.0.4 PORTREVISION= 12 CATEGORIES= misc xfce MASTER_SITES= http://download.berlios.de/xfce-goodies/ DIST_SUBDIR= xfce4 -MAINTAINER= demon@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Additional artwork for the XFce4 desktop environment RUN_DEPENDS= xfdesktop:${PORTSDIR}/x11-wm/xfce4-desktop GNU_CONFIGURE= yes NO_STAGE= yes .include Index: head/multimedia/zoneminder/Makefile =================================================================== --- head/multimedia/zoneminder/Makefile (revision 362805) +++ head/multimedia/zoneminder/Makefile (revision 362806) @@ -1,141 +1,141 @@ # Created by: bsam, based on ports by achix (1.23 & local camera stuff), # $FreeBSD$ PORTNAME= zoneminder PORTVERSION= 1.25.0 PORTREVISION= 3 CATEGORIES= multimedia MASTER_SITES= http://www2.zoneminder.com/downloads/ \ http://www.zoneminder.com/downloads/ DISTNAME= ZoneMinder-${PORTVERSION} -MAINTAINER= pakhom706@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Complete security camera solution, fully web based with image analysis LICENSE= GPLv2 RUN_DEPENDS= ${LOCALBASE}/bin/sudo:${PORTSDIR}/security/sudo LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \ libnetpbm.so:${PORTSDIR}/graphics/netpbm \ libpcre.so:${PORTSDIR}/devel/pcre \ libavutil0.so:${PORTSDIR}/multimedia/ffmpeg0 BUILD_DEPENDS= ${LOCALBASE}/bin/php-config:${PORTSDIR}/lang/php5-extensions \ p5-DBI>=0:${PORTSDIR}/databases/p5-DBI \ p5-DBD-mysql>=0:${PORTSDIR}/databases/p5-DBD-mysql \ p5-Date-Manip>=0:${PORTSDIR}/devel/p5-Date-Manip \ p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ p5-Archive-Zip>=0:${PORTSDIR}/archivers/p5-Archive-Zip \ p5-Archive-Tar>=0:${PORTSDIR}/archivers/p5-Archive-Tar \ p5-MIME-Lite>=0:${PORTSDIR}/mail/p5-MIME-Lite \ p5-MIME-Tools>=0:${PORTSDIR}/mail/p5-MIME-Tools \ ${LOCALBASE}/include/linux/videodev.h:${PORTSDIR}/multimedia/v4l_compat USES= perl5 GNU_CONFIGURE= yes USE_PHP= json mysql session USE_MYSQL= yes USE_RC_SUBR= zoneminder CFLAGS+= -I${LOCALBASE}/include/ffmpeg0 -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib/ffmpeg0 CONFIGURE_ARGS= --with-mysql=${LOCALBASE} \ --with-webdir=${WWWDIR}/data \ --with-cgidir=${WWWDIR}/cgi-bin \ --with-webgroup=${WWWGRP} \ --with-webuser=${WWWOWN} \ --enable-crashtrace=no \ --with-ffmpeg=${LOCALBASE} \ --enable-mmap=no \ --with-extralibs=-lpthread CONFIGURE_ENV= ZM_DB_HOST=${DB_HOST} \ ZM_DB_NAME=${DB_NAME} \ ZM_DB_USER=${DB_USER} \ ZM_DB_PASS=${DB_PASS} \ ZM_SSL_LIB="openssl" DB_HOST?= localhost DB_NAME?= zm DB_USER?= zmuser DB_PASS?= zmpass PORTDOCS= AUTHORS \ COPYING \ ChangeLog \ INSTALL \ NEWS \ README \ README.FreeBSD \ TODO MAN3PREFIX?= ${PREFIX}/lib/perl5/${PERL_VER} MAN3= ZoneMinder::Trigger::Connection.3 \ ZoneMinder::Control::Ncs370.3 \ ZoneMinder::Trigger::Channel::Serial.3 \ ZoneMinder.3 \ ZoneMinder::Config.3 \ ZoneMinder::Control::mjpgStreamer.3 \ ZoneMinder::Control::PanasonicIP.3 \ ZoneMinder::Base.3 \ ZoneMinder::Trigger::Channel::Unix.3 \ ZoneMinder::Control::AxisV2.3 \ ZoneMinder::Trigger::Channel.3 \ ZoneMinder::Memory.3 \ ZoneMinder::Trigger::Channel::File.3 \ ZoneMinder::Database.3 \ ZoneMinder::Control::PelcoD.3 \ ZoneMinder::Control::Visca.3 \ ZoneMinder::Trigger::Channel::Inet.3 \ ZoneMinder::Trigger::Connection::Example.3 \ ZoneMinder::Trigger::Channel::Spawning.3 \ ZoneMinder::Control.3 \ ZoneMinder::General.3 \ ZoneMinder::Trigger::Channel::Handle.3 \ ZoneMinder::ConfigAdmin.3 \ ZoneMinder::ConfigData.3 \ ZoneMinder::Logger.3 NO_STAGE= yes .include .if ${ARCH}=="i386" EXTRA_PATCHES+= ${FILESDIR}/extra-patch-scripts_ZoneMinder_lib_ZoneMinder_Memory.pm.in .endif .if ${OSVERSION} < 900000 BROKEN= does not compile on 7.X and 8.X .endif post-configure: ${MV} ${WRKSRC}/zm.conf ${WRKSRC}/zm.conf.sample post-patch: ${REINPLACE_CMD} -e 's,/bin:/usr/bin,/bin:/usr/bin:${LOCALBASE}/bin,g' ${WRKSRC}/scripts/*.pl.in ${REINPLACE_CMD} -e 's,sudo,${LOCALBASE}/bin/sudo,g' ${WRKSRC}/scripts/zmpkg.pl.in ${REINPLACE_CMD} \ -e 's," == "," = ",g' \ -e 's,lavcodec,lavcodec0,g' \ -e 's,lavformat,lavformat0,g' \ -e 's,lavutil,lavutil0,g' \ -e 's,lavdevice,lavdevice0,g' \ -e 's,lswscale,lswscale0,g' \ -e 's,^FFMPEG_CFLAGS=.*,,g' \ ${WRKSRC}/configure ${REINPLACE_CMD} -e 's,ZM_V4L2,ZM_HAS_V4L2,g' ${WRKSRC}//web/skins/classic/views/monitorprobe.php pre-build: ${CP} ${FILESDIR}/videodev.h ${WRKSRC}/src ${CP} ${FILESDIR}/zm_fbsd_camera.cpp ${WRKSRC}/src ${TOUCH} ${WRKSRC}/src/zm_fbsd_camera.h ${CP} ${FILESDIR}/README.FreeBSD ${WRKSRC} post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} .for i in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/$i ${DOCSDIR} .endfor .endif ${CAT} ${FILESDIR}/README.FreeBSD .include Index: head/net-mgmt/aspathtree/Makefile =================================================================== --- head/net-mgmt/aspathtree/Makefile (revision 362805) +++ head/net-mgmt/aspathtree/Makefile (revision 362806) @@ -1,75 +1,75 @@ # Created by: Janos Mohacsi # $FreeBSD$ PORTNAME= aspathtree PORTVERSION= 4.2 PORTREVISION= 3 CATEGORIES= net-mgmt ipv6 MASTER_SITES= http://ipv6.niif.hu/~mohacsi/downloads/ DISTNAME= ASpath-tree-v${PORTVERSION} -MAINTAINER= jmohacsi@bsd.hu +MAINTAINER= ports@FreeBSD.org COMMENT= Checks IPv6 routes' stability and correctness on IPv6 internet RUN_DEPENDS= p5-Net-Telnet>=0:${PORTSDIR}/net/p5-Net-Telnet \ whois3:${PORTSDIR}/net/ripe-whois WRKSRC= ${WRKDIR}/ASpath-tree-v${PORTVERSION}/ RESTRICTED= not redistributable, license agreement required NO_BUILD= yes USES= perl5 SCRIPTS_ENV+= PERL5=${PERL5} SUB_FILES= pkg-message CONFIG_FILES= ASpath-tree.config ICON_FILES= bnew.gif bold.gif e.gif h.gif l.gif p.gif t.gif v.gif LIB_FILES= bgp-tree-changes.pl bgp-tree.pl create-homepage.pl elaborate-aspaths.pl getbgptable.pl history.pl ipv6prefix.pl odd-as.pl odd-routes.pl route-stability.pl utility.pl ASmain.pl DATA_FILES= 6bone.db force.as.name rirs.db DOC_FILES= DISCLAIMER readme.txt changes.txt NO_STAGE= yes pre-configure: @${REINPLACE_CMD} -e 's#%%PATHPERLBIN%%#${PERL5}#; \ s#%%PREFIX%%#${PREFIX}#' ${WRKSRC}/update-rtree \ ${WRKSRC}/etc/ASpath-tree.config do-install: #installing main script ${INSTALL_SCRIPT} ${WRKSRC}/update-rtree ${PREFIX}/bin #installing lib files ${MKDIR} ${PREFIX}/libexec/aspathtree/ .for file in ${LIB_FILES} ${INSTALL_DATA} ${WRKSRC}/lib/${file} ${PREFIX}/libexec/aspathtree .endfor #installing htdocs files ${MKDIR} ${PREFIX}/var/aspathtree/htdocs/icons/ .for file in ${ICON_FILES} ${INSTALL_DATA} ${WRKSRC}/htdocs/icons/${file} ${PREFIX}/var/aspathtree/htdocs/icons/ .endfor #installing data files ${MKDIR} ${PREFIX}/var/aspathtree/data .for file in ${DATA_FILES} ${INSTALL_DATA} ${WRKSRC}/data/${file} ${PREFIX}/var/aspathtree/data/ .endfor #installing log directory ${MKDIR} ${PREFIX}/var/aspathtree/log #installing config files .for file in ${CONFIG_FILES} ${INSTALL_DATA} ${WRKSRC}/etc/${file} ${PREFIX}/etc/${file}.dist .endfor #installing docs .ifndef(NOPORTDOCS) ${MKDIR} ${DOCSDIR} .for file in ${DOC_FILES} ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} .endfor .endif post-install: .if !defined(BATCH) @${ECHO} @${CAT} ${PKGMESSAGE} @${ECHO} .endif .include Index: head/net-mgmt/bigsister/Makefile =================================================================== --- head/net-mgmt/bigsister/Makefile (revision 362805) +++ head/net-mgmt/bigsister/Makefile (revision 362806) @@ -1,43 +1,43 @@ # Created by: Bruce M Simpson # $FreeBSD$ PORTNAME= bigsister PORTVERSION= 1.02 PORTREVISION= 7 CATEGORIES= net-mgmt MASTER_SITES= SF/${PORTNAME}/Big%20Sister/${PORTVERSION} DISTNAME= big-sister-${PORTVERSION} -MAINTAINER= freebsd@troback.com +MAINTAINER= ports@FreeBSD.org COMMENT= SNMP-based network and system monitor with web interface RUN_DEPENDS= net-snmp>=0:${PORTSDIR}/net-mgmt/net-snmp \ rrdtool:${PORTSDIR}/databases/rrdtool \ p5-GD>=0:${PORTSDIR}/graphics/p5-GD \ p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ p5-SNMP_Session>=0:${PORTSDIR}/net-mgmt/p5-SNMP_Session \ p5-URI>=0:${PORTSDIR}/net/p5-URI USES= perl5 gmake USE_RC_SUBR= ${PORTNAME} NO_BUILD= yes HAS_CONFIGURE= yes WRKSRC= ${WRKDIR}/big-sister-${PORTVERSION} BS_USER?= bs BS_PERL_EXT?= pl BS_URL?= /bs BS_CGI_PATH?= /cgi-bin CONFIGURE_ARGS= \ --prefix=${PREFIX}/${PORTNAME} \ --with-cgi=${BS_CGI_PATH} \ --with-perlext=${BS_PERL_EXT} \ --with-url=${BS_URL} \ --with-user=${BS_USER} NO_STAGE= yes pre-install: @${SETENV} PKG_PREFIX=${PREFIX}/${PORTNAME} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL .include Index: head/net-mgmt/cacti/Makefile =================================================================== --- head/net-mgmt/cacti/Makefile (revision 362805) +++ head/net-mgmt/cacti/Makefile (revision 362806) @@ -1,71 +1,71 @@ # Created by: Vincent Tantardini # $FreeBSD$ PORTNAME= cacti PORTVERSION= 0.8.8b${PATCHLEVEL} PORTREVISION= 2 CATEGORIES= net-mgmt www MASTER_SITES= http://www.cacti.net/downloads/ DISTNAME= ${PORTNAME}-${SITEDISTVERSION} # Vendor's patches PATCH_SITES= http://www.cacti.net/downloads/patches/${SITEDISTVERSION}/ PATCHFILES= PATCH_DIST_STRIP= -p1 PATCHLEVEL= -MAINTAINER= sem@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Web-driven graphing interface for RRDTool LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rrdtool:${PORTSDIR}/databases/rrdtool PATCH_STRIP= -p1 USE_MYSQL= yes USE_PHP= mysql pcre session sockets snmp xml WANT_PHP_WEB= yes NO_BUILD= yes PKGMESSAGE= ${WRKDIR}/pkg-message PKGINSTALL= ${WRKDIR}/pkg-install SUB_FILES= pkg-message pkg-install CACTIDIR?= share/cacti CACTIUSER?= cacti CACTIGROUP?= ${CACTIUSER} WRKSRC= ${WRKDIR}/${PORTNAME}-${SITEDISTVERSION} SITEDISTVERSION= ${PORTVERSION:S/${PATCHLEVEL}$//} PLIST_SUB+= CACTIDIR=${CACTIDIR} SUB_LIST+= CACTIDIR=${CACTIDIR} CACTIUSER=${CACTIUSER} \ CACTIGROUP=${CACTIGROUP} NO_STAGE= yes post-patch: @${FIND} ${WRKSRC} -name \*.orig -delete; \ ${MV} ${WRKSRC}/include/config.php ${WRKSRC}/include/config.php.orig pre-install: @${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL do-install: @${MKDIR} ${PREFIX}/${CACTIDIR}; \ ${CP} -R ${WRKSRC}/* ${PREFIX}/${CACTIDIR}/; \ if [ ! -f ${PREFIX}/${CACTIDIR}/include/config.php ]; then \ ${CP} ${PREFIX}/${CACTIDIR}/include/config.php.orig \ ${PREFIX}/${CACTIDIR}/include/config.php; \ fi; \ if [ -f ${PREFIX}/${CACTIDIR}/include/db-settings.php ]; then \ ${ECHO_CMD} "======================================================================="; \ ${ECHO_CMD} "WARNING! You have to move DB settings from"; \ ${ECHO_CMD} "${PREFIX}/${CACTIDIR}/include/db-settings.php file to"; \ ${ECHO_CMD} "${PREFIX}/${CACTIDIR}/include/config.php and remove db-settings.php"; \ fi post-install: @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL @${CAT} ${PKGMESSAGE} .include Index: head/net-mgmt/cisco_conf/Makefile =================================================================== --- head/net-mgmt/cisco_conf/Makefile (revision 362805) +++ head/net-mgmt/cisco_conf/Makefile (revision 362806) @@ -1,24 +1,24 @@ # Created by: Anton Voronin # $FreeBSD$ PORTNAME= cisco_conf PORTVERSION= 1.2 PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= http://www.chelcom.ru/~anton/projects/files/ DISTNAME= ciscoconf-${PORTVERSION} DIST_SUBDIR= cisco_conf -MAINTAINER= anton@chelcom.ru +MAINTAINER= ports@FreeBSD.org COMMENT= Simple configuration editor for Cisco devices RUN_DEPENDS= ${LOCALBASE}/bin/joe:${PORTSDIR}/editors/joe WRKSRC= ${WRKDIR}/ciscoconf DOCSDIR= ${PREFIX}/share/doc/ciscoconf NO_BUILD= YES NO_STAGE= yes .include Index: head/net-mgmt/docsis/Makefile =================================================================== --- head/net-mgmt/docsis/Makefile (revision 362805) +++ head/net-mgmt/docsis/Makefile (revision 362806) @@ -1,33 +1,33 @@ # Created by: James Flemer # $FreeBSD$ PORTNAME= docsis PORTVERSION= 0.9.5 PORTREVISION= 5 CATEGORIES= net-mgmt MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} -MAINTAINER= jflemer@alum.rpi.edu +MAINTAINER= ports@FreeBSD.org COMMENT= DOCSIS(tm) binary configuration file encoder/decoder BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 LIB_DEPENDS= libnetsnmp.so:${PORTSDIR}/net-mgmt/net-snmp GNU_CONFIGURE= yes USE_OPENSSL= yes USES= bison PLIST_SUB= MIBS=share/snmp/mibs NO_STAGE= yes .include .if ${ARCH} == "amd64" BROKEN= Produces corrupt files on amd64 .endif post-patch: @${REINPLACE_CMD} -e 's|^htmldocdir =.*|htmldocdir = ${DOCSDIR}|' ${WRKSRC}/doc/Makefile.in @${REINPLACE_CMD} -e 's|^examplesdir =.*|examplesdir = ${EXAMPLESDIR}|' ${WRKSRC}/examples/Makefile.in .include Index: head/net-mgmt/flowd/Makefile =================================================================== --- head/net-mgmt/flowd/Makefile (revision 362805) +++ head/net-mgmt/flowd/Makefile (revision 362806) @@ -1,82 +1,82 @@ # Created by: Janos Mohacsi # $FreeBSD$ PORTNAME= flowd PORTVERSION= 0.9.1 PORTREVISION= 2 CATEGORIES= net-mgmt ipv6 MASTER_SITES= GOOGLE_CODE \ http://www2.mindrot.org/files/flowd/ -MAINTAINER= jmohacsi@bsd.hu +MAINTAINER= ports@FreeBSD.org COMMENT= Small, fast, and secure NetFlow collector OPTIONS_DEFINE= PERL PYTHON OPTIONS_DEFAULT=PERL PERL_DESC= Install flowd perl module PYTHON_DESC= Install flowd Python support USES= gmake GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var USE_RC_SUBR= flowd MAN8= flowd.8 flowd-reader.8 MAN5= flowd.conf.5 PORTDOCS= README INSTALL FLOWD_USER= _flowd USERS= ${FLOWD_USER} GROUPS= ${FLOWD_USER} NO_STAGE= yes .include .if ${PORT_OPTIONS:MPERL} USES+= perl5 PLIST_SUB+= PERL="" MAN3= Flowd.3 .else PLIST_SUB+= PERL="@comment " .endif .if ${PORT_OPTIONS:MPYTHON} USE_PYTHON= yes PLIST_SUB+= PYTHON="" INSTALLS_EGGINFO= yes .else PLIST_SUB+= PYTHON="@comment " .endif post-patch: @${REINPLACE_CMD} -e "s;%%FLOWD_USER%%;${FLOWD_USER};g" \ ${WRKSRC}/flowd.h ${REINPLACE_CMD} -i '' -e 's|/usr/bin/perl|${PERL}|' \ ${WRKSRC}/tools/flowinsert.pl \ ${WRKSRC}/tools/wormsuspects.pl post-install: .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} .endif .if ${PORT_OPTIONS:MPERL} cd ${WRKSRC}/Flowd-perl && \ ${PERL} Makefile.PL INSTALLSITEMAN3DIR=${MAN3PREFIX}/man/man3 PREFIX=${PREFIX} && \ ${MAKE_CMD} && \ ${MAKE_CMD} install; -@${RM} -f ${PREFIX}/lib/perl5/${PERL_VER}/${PERL_ARCH}/perllocal.pod .endif .if ${PORT_OPTIONS:MPYTHON} cd ${WRKSRC} && \ ${PYTHON_CMD} setup.py build && \ ${PYTHON_CMD} setup.py install .endif .if ${PORT_OPTIONS:MEXAMPLES} ${MKDIR} ${EXAMPLESDIR} @( cd ${WRKSRC}/tools && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}/ ) .endif .include Index: head/net-mgmt/fruity/Makefile =================================================================== --- head/net-mgmt/fruity/Makefile (revision 362805) +++ head/net-mgmt/fruity/Makefile (revision 362806) @@ -1,47 +1,47 @@ # Created by: Dan Langille # $FreeBSD$ PORTNAME= fruity DISTVERSION= 1.0-rc2 PORTREVISION= 3 CATEGORIES= net-mgmt www MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-1.0-rc2 -MAINTAINER= dan@langille.org +MAINTAINER= ports@FreeBSD.org COMMENT= Fruity is a PHP based web-frontend to your Nagios configuration RUN_DEPENDS= ${LOCALBASE}/libexec/nagios/check_nagios:${PORTSDIR}/net-mgmt/nagios-plugins NO_BUILD= yes SUB_FILES= pkg-message patch-includes-config.inc fruity.config.inc WANT_PHP_WEB= yes DEFAULT_PHP_VER=5 USE_MYSQL= yes SUB_LIST+= REQ_MYSQL=mysql USE_PHP= mysql session dba pcre NO_STAGE= yes .include post-patch: # the files directory contains a patch for the original file # this removes the original copy created by that patch @${RM} ${WRKSRC}/includes/config.inc.orig @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/includes/config.inc # the above replace create this file, which needs to be removed @${RM} ${WRKSRC}/includes/config.inc.bak do-install: @${ECHO} "Installing in ${PREFIX}/www/fruity" ${MKDIR} ${PREFIX}/www/fruity ${CP} -R ${WRKSRC}/* ${PREFIX}/www/fruity ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/www/fruity post-install: @${CP} ${WRKDIR}/fruity.config.inc ${PREFIX}/etc/fruity.config.inc-sample @${CAT} ${PKGMESSAGE} .include Index: head/net-mgmt/glpi-plugins-tracker-agent/Makefile =================================================================== --- head/net-mgmt/glpi-plugins-tracker-agent/Makefile (revision 362805) +++ head/net-mgmt/glpi-plugins-tracker-agent/Makefile (revision 362806) @@ -1,44 +1,44 @@ # Created by: ddurieux # $FreeBSD$ PORTNAME= agent DISTVERSION= 1.5.3 PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= https://forge.indepnet.net/attachments/download/512/ \ http://glpi.siprossii.com/distfiles/ PKGNAMEPREFIX= glpi-plugins-tracker- DISTNAME= glpi-tracker_agent-1.5.3 -MAINTAINER= d.durieux@siprossii.com +MAINTAINER= ports@FreeBSD.org COMMENT= Agent get informations of networking devices by SNMP for GLPI RUN_DEPENDS= p5-Net-SNMP>=0:${PORTSDIR}/net-mgmt/p5-Net-SNMP \ p5-AppConfig>=0:${PORTSDIR}/devel/p5-AppConfig \ p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ p5-XML-Simple>=0:${PORTSDIR}/textproc/p5-XML-Simple \ p5-Parallel-ForkManager>=0:${PORTSDIR}/devel/p5-Parallel-ForkManager USES= perl5 WRKSRC= ${WRKDIR}/agent_tracker NO_BUILD= yes PKGMESSAGE= ${WRKDIR}/pkg-message CPIOARGS= --quiet -pdum TRACKERAGENTDIR?= share/tracker_agent NO_STAGE= yes .include post-configure: @${SED} -e 's,%%PREFIX%%,${PREFIX},g' \ -e 's,%%TRACKERAGENTDIR%%,${TRACKERAGENTDIR},g' pkg-message > ${PKGMESSAGE} do-install: @${MKDIR} -m 0755 ${PREFIX}/${TRACKERAGENTDIR} @cd ${WRKSRC} && ${FIND} * -print | ${CPIO} ${CPIOARGS} ${PREFIX}/${TRACKERAGENTDIR} post-install: @${CAT} ${PKGMESSAGE} .include Index: head/net-mgmt/glpi-plugins-tracker-server/Makefile =================================================================== --- head/net-mgmt/glpi-plugins-tracker-server/Makefile (revision 362805) +++ head/net-mgmt/glpi-plugins-tracker-server/Makefile (revision 362806) @@ -1,41 +1,41 @@ # Created by: ddurieux # $FreeBSD$ PORTNAME= server DISTVERSION= 2.1.3 CATEGORIES= net-mgmt MASTER_SITES= https://forge.indepnet.net/attachments/download/512/ \ http://glpi.siprossii.com/distfiles/ PKGNAMEPREFIX= glpi-plugins-tracker- DISTNAME= glpi-tracker_server-2.1.3 -MAINTAINER= d.durieux@siprossii.com +MAINTAINER= ports@FreeBSD.org COMMENT= Plugin of glpi to get information of networking devices by SNMP RUN_DEPENDS= glpi>=0.72:${PORTSDIR}/www/glpi USE_PHP= zlib WRKSRC= ${WRKDIR}/tracker NO_BUILD= yes PKGMESSAGE= ${WRKDIR}/pkg-message CPIOARGS= --quiet -pdum -R GLPIPLUGINDIR?= www/glpi/plugins/tracker NO_STAGE= yes .include post-configure: @${SED} -e 's,%%PREFIX%%,${PREFIX},g' \ -e 's,%%GLPIPLUGINDIR%%,${GLPIPLUGINDIR},g' pkg-message > ${PKGMESSAGE} do-install: @${MKDIR} -m 0755 ${PREFIX}/${GLPIPLUGINDIR} @cd ${WRKSRC} && ${FIND} * -print | ${CPIO} ${CPIOARGS} ${WWWOWN}:${WWWGRP} ${PREFIX}/${GLPIPLUGINDIR} @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${GLPIPLUGINDIR} post-install: @${CAT} ${PKGMESSAGE} .include Index: head/net-mgmt/horde3-nic/Makefile =================================================================== --- head/net-mgmt/horde3-nic/Makefile (revision 362805) +++ head/net-mgmt/horde3-nic/Makefile (revision 362806) @@ -1,20 +1,20 @@ # Created by: Beech Rintoul # $FreeBSD$ PORTNAME= nic DISTVERSIONPREFIX= DISTVERSION= 0.1.beta20070316 PORTREVISION= 8 CATEGORIES= net-mgmt MASTER_SITES= CENKES http://freebsd.alaskaparadise.com/source/ -MAINTAINER= horde@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Network service monitor USE_HORDE= base pkg-message USES= gettext PORTDOCS= CHANGES CREDITS INSTALL TODO README NO_STAGE= yes .include "${.CURDIR}/../../www/horde3-base/bsd.horde.mk" .include Index: head/net-mgmt/ifgraph/Makefile =================================================================== --- head/net-mgmt/ifgraph/Makefile (revision 362805) +++ head/net-mgmt/ifgraph/Makefile (revision 362806) @@ -1,66 +1,66 @@ # Created by: Lars Thegler # $FreeBSD$ PORTNAME= ifgraph PORTVERSION= 0.4.10 PORTREVISION= 4 CATEGORIES= net-mgmt www MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20stable/${PORTVERSION} -MAINTAINER= lth@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Simple grapher of SNMP data with RRD RUN_DEPENDS= rrdtool:${PORTSDIR}/databases/rrdtool \ p5-Color-Rgb>0:${PORTSDIR}/graphics/p5-Color-Rgb \ p5-Net-SNMP>=0:${PORTSDIR}/net-mgmt/p5-Net-SNMP BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 NO_BUILD= yes PKGMESSAGE= ${WRKDIR}/pkg-message PKGINSTALL= ${WRKDIR}/pkg-install PKGDEINSTALL= ${WRKDIR}/pkg-deinstall USERS= ifgraph GROUPS= ifgraph PLFILES= find-if.pl ifgraph.pl makegraph.pl DOCFILES= CHANGELOG INSTALACAO INSTALL TODO LICENSE.TXT MUDANCAS SUB_FILES= crontab pkg-deinstall pkg-install pkg-message SUB_LIST= USER=${USERS} PERL=${PERL} NO_STAGE= yes do-install: .for plfile in ${PLFILES} @ ${SED} ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ ${WRKSRC}/${plfile} > ${WRKDIR}/${plfile} @ ${INSTALL_SCRIPT} ${WRKDIR}/${plfile} ${PREFIX}/bin .endfor @ ${SED} ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ ${WRKSRC}/ifgraph.conf > ${WRKSRC}/ifgraph.conf.sample @ ${INSTALL_DATA} ${WRKSRC}/ifgraph.conf.sample ${PREFIX}/etc @ ${MKDIR} ${PREFIX}/ifgraph @ ${MKDIR} ${PREFIX}/ifgraph/htdocs @ ${MKDIR} ${PREFIX}/ifgraph/lib @ ${CP} ${WRKSRC}/lib/rgb.txt ${PREFIX}/ifgraph/lib @ ${CP} -Rp ${WRKSRC}/templates ${PREFIX}/ifgraph @ ${INSTALL_DATA} ${WRKDIR}/crontab ${PREFIX}/ifgraph/crontab @ ${CHOWN} -R ifgraph:ifgraph ${PREFIX}/ifgraph @ ${MKDIR} ${PREFIX}/var/ifgraph @ ${CHOWN} ifgraph:ifgraph ${PREFIX}/var/ifgraph .if !defined(NOPORTDOCS) @ ${MKDIR} ${DOCSDIR} .for docfile in ${DOCFILES} @ ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR} .endfor .endif post-install: @ ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL .if !defined(BATCH) @ ${CAT} ${PKGMESSAGE} .endif .include Index: head/net-mgmt/nagios-check_kumofs/Makefile =================================================================== --- head/net-mgmt/nagios-check_kumofs/Makefile (revision 362805) +++ head/net-mgmt/nagios-check_kumofs/Makefile (revision 362806) @@ -1,31 +1,31 @@ # $FreeBSD$ PORTNAME= check_kumofs PORTVERSION= 0.20100118 CATEGORIES= net-mgmt MASTER_SITES= # none PKGNAMEPREFIX= nagios- DISTFILES= # none -MAINTAINER= kuriyama@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Nagios plugin for kumofs manager/server RUN_DEPENDS= \ nagios-plugins>0:${PORTSDIR}/net-mgmt/nagios-plugins \ kumoctl:${PORTSDIR}/databases/kumofs PLIST_FILES= libexec/nagios/check_kumomgr libexec/nagios/check_kumosvr NO_STAGE= yes do-build: ${MKDIR} ${WRKSRC} .for f in check_kumomgr check_kumosvr ${SED} -e 's|/usr/local|${PREFIX}|' ${FILESDIR}/${f}.in > ${WRKSRC}/${f} .endfor do-install: .for f in check_kumomgr check_kumosvr ${INSTALL_SCRIPT} ${WRKSRC}/${f} ${PREFIX}/libexec/nagios/${f} .endfor .include Index: head/net-mgmt/nagios-portaudit/Makefile =================================================================== --- head/net-mgmt/nagios-portaudit/Makefile (revision 362805) +++ head/net-mgmt/nagios-portaudit/Makefile (revision 362806) @@ -1,53 +1,53 @@ # Created by: rea-fbsd@codelabs.ru # $FreeBSD$ PORTNAME= portaudit PORTVERSION= 1.0 PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= http://codelabs.ru/fbsd/distfiles/ \ http://fbsd.inse.ru/distfiles/ PKGNAMEPREFIX= nagios- DISTNAME= check_portaudit-${PORTVERSION} -MAINTAINER= rea@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Nagios plug-in to get portaudit/portupgrade status OPTIONS_DEFINE= PORTAUDIT PORTUPGRADE PORTUPGRADE_DEVEL OPTIONS_DEFAULT= PORTAUDIT PORTUPGRADE PORTAUDIT_DESC= Enable portaudit check PORTUPGRADE_DESC= Enable portupgrade check PORTUPGRADE_DEVEL_DESC= Use portupgrade-devel USES= perl5 NO_WRKSUBDIR= yes NO_BUILD= yes NO_STAGE= yes .include .if ! ${PORT_OPTIONS:MPORTUPGRADE} && ! ${PORT_OPTIONS:MPORTAUDIT} && ! ${PORT_OPTIONS:MPORTAUDIT_DEVEL} IGNORE= unusable without portupgrade and portaudit .endif .if ${PORT_OPTIONS:MPORTUPGRADE} && ${PORT_OPTIONS:MPORTUPGRADE_DEVEL} IGNORE= choose either portupgrade or portupgrade-devel, not both .endif .if ${PORT_OPTIONS:MPORTAUDIT} RUN_DEPENDS+= portaudit:${PORTSDIR}/ports-mgmt/portaudit .endif .if ${PORT_OPTIONS:MPORTUPGRADE} RUN_DEPENDS+= portupgrade:${PORTSDIR}/ports-mgmt/portupgrade .endif .if ${PORT_OPTIONS:MPORTUPGRADE_DEVEL} RUN_DEPENDS+= portupgrade:${PORTSDIR}/ports-mgmt/portupgrade-devel .endif do-install: @${MKDIR} ${PREFIX}/libexec/nagios ${INSTALL_SCRIPT} ${WRKSRC}/check_portaudit ${PREFIX}/libexec/nagios .include Index: head/net-mgmt/nagios-snmp-plugins-extras/Makefile =================================================================== --- head/net-mgmt/nagios-snmp-plugins-extras/Makefile (revision 362805) +++ head/net-mgmt/nagios-snmp-plugins-extras/Makefile (revision 362806) @@ -1,50 +1,50 @@ # Created by: Alexey V. Degtyarev # $FreeBSD$ PORTNAME= nagios-snmp-plugins-extras PORTVERSION= 1.1.2 PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= ftp://ftp.renatasystems.org/pub/FreeBSD/ports/distfiles/ -MAINTAINER= alexey@renatasystems.org +MAINTAINER= ports@FreeBSD.org COMMENT= Set of Nagios plugins written in Perl to check devices with SNMP NO_BUILD= yes USES= perl5 USE_PERL5= run RUN_DEPENDS+= p5-Net-SNMP>=0:${PORTSDIR}/net-mgmt/p5-Net-SNMP \ ${LOCALBASE}/libexec/nagios/utils.pm:${PORTSDIR}/net-mgmt/nagios-plugins PLUGINS= \ check_snmp_boostedge.pl \ check_snmp_cpfw.pl \ check_snmp_css.pl \ check_snmp_css_main.pl \ check_snmp_env.pl \ check_snmp_int.pl \ check_snmp_linkproof_nhr.pl \ check_snmp_load.pl \ check_snmp_mem.pl \ check_snmp_nsbox.pl \ check_snmp_process.pl \ check_snmp_storage.pl \ check_snmp_vrrp.pl \ check_snmp_win.pl \ PLIST_FILES= ${PLUGINS:S,^,libexec/nagios/,} WRKSRC= ${WRKDIR}/plugins NO_STAGE= yes post-extract: ${SED} -i "" -e "s#/tmp/#/var/tmp/#" \ -e "s#/usr/local/nagios/libexec#${LOCALBASE}/libexec/nagios#" \ ${PLUGINS:S,^,${WRKSRC}/,} do-install: ${MKDIR} ${PREFIX}/libexec/nagios ${INSTALL_SCRIPT} ${PLUGINS:S,^,${WRKSRC}/,} ${PREFIX}/libexec/nagios/ .include Index: head/net-mgmt/nagiostat/Makefile =================================================================== --- head/net-mgmt/nagiostat/Makefile (revision 362805) +++ head/net-mgmt/nagiostat/Makefile (revision 362806) @@ -1,52 +1,52 @@ # Created by: Janos.Mohacsi@bsd.hu # $FreeBSD$ PORTNAME= nagiostat PORTVERSION= 1.0.0 PORTREVISION= 6 CATEGORIES= net-mgmt MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/1.0 EXTRACT_SUFX= .tgz -MAINTAINER= jmohacsi@bsd.hu +MAINTAINER= ports@FreeBSD.org COMMENT= Nagiostat parses performance-data from Nagios and generates graphs RUN_DEPENDS= rrdtool:${PORTSDIR}/databases/rrdtool \ nagios:${PORTSDIR}/net-mgmt/nagios USES= perl5 NO_BUILD= yes NO_WRKSUBDIR= yes NAGIOSDIR?= /var/spool/nagios DOC_FILES= README GPL.txt NAGIOSWWWDIR?= www/nagios PLIST_SUB+= NAGIOSWWWDIR=${NAGIOSWWWDIR} NO_STAGE= yes post-patch: @${REINPLACE_CMD} \ -e 's|%%NAGIOSTATCONFDIR%%|${PREFIX}/etc/|' \ -e 's|%%NAGIOSTATDIR%%|${PREFIX}/libexec/${PORTNAME}/|' \ -e 's|%%NAGIOSTATRRD%%|${NAGIOSDIR}/${PORTNAME}rrd/|' \ -e 's|%%PREFIX%%|${PREFIX}|' \ ${WRKSRC}/nagiostat ${WRKSRC}/nagiostat.conf ${WRKSRC}/README do-install: @${MKDIR} ${PREFIX}/libexec/${PORTNAME} @${MKDIR} ${NAGIOSDIR}/${PORTNAME}rrd @${INSTALL_SCRIPT} ${WRKSRC}/nagiostat ${PREFIX}/libexec/${PORTNAME}/ @${LN} -fs ${PREFIX}/libexec/${PORTNAME}/nagiostat ${PREFIX}/${NAGIOSWWWDIR}/cgi-bin/nagiostat.cgi @${INSTALL_DATA} ${WRKSRC}/nagiostat.conf ${PREFIX}/etc/nagiostat.conf-sample @${MKDIR} ${PREFIX}/libexec/${PORTNAME}/html-templates/ @${INSTALL_DATA} ${WRKSRC}/html-templates/default.html ${PREFIX}/libexec/${PORTNAME}/html-templates/ @${INSTALL_DATA} ${WRKSRC}/html-templates/graphindex.html ${PREFIX}/libexec/${PORTNAME}/html-templates/ post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for file in ${DOC_FILES} @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} .endfor .endif .include Index: head/net-mgmt/ndpmon/Makefile =================================================================== --- head/net-mgmt/ndpmon/Makefile (revision 362805) +++ head/net-mgmt/ndpmon/Makefile (revision 362806) @@ -1,98 +1,98 @@ # Created by: janos.mohacsi@bsd.hu # $FreeBSD$ PORTNAME= ndpmon PORTVERSION= 1.4.0 PORTREVISION= 3 CATEGORIES= net-mgmt ipv6 MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-1.4/ EXTRACT_SUFX= .tgz -MAINTAINER= jmohacsi@bsd.hu +MAINTAINER= ports@FreeBSD.org COMMENT= On-link icmpv6 message monitoring and reporting daemon LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING OPTIONS_DEFINE= PY4SUITE MACRESOLV OPTIONS_DEFAULT= PY4SUITE_DESC= Depend on py-4suite-xml (for generating HTML) MACRESOLV_DESC= Enable MAC Manufacturer Resolution (use p5-libwww) NO_STAGE= yes .include .if ${PORT_OPTIONS:MPY4SUITE} RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/Ft/Xml/Domlette.py:${PORTSDIR}/textproc/py-4suite-xml USE_PYTHON= yes PLIST_SUB+= PY="" .else PLIST_SUB+= PY="@comment " .endif USES= perl5 USE_PERL5= run USE_GNOME= libxml2 USE_RC_SUBR= ndpmonitor GNU_CONFIGURE= yes CONFIGURE_ENV= OSTYPE=FreeBSD CONFIGURE_ARGS= --with-var-datadir=${PREFIX}/var --with-confdir=${ETCDIR} \ --with-libxml2=${LOCALBASE} --cache-file=/dev/null MAN8= ndpmon.8 PORTDOCS= INSTALL README .if ${PORT_OPTIONS:MMACRESOLV} CONFIGURE_ARGS+=--enable-mac-resolv BUILD_DEPENDS+= p5-libwww>=6.05:${PORTSDIR}/www/p5-libwww RUN_DEPENDS+= p5-libwww>=6.05:${PORTSDIR}/www/p5-libwww PLIST_SUB+= MACRESOLV="" .else PLIST_SUB+= MACRESOLV="@comment " .endif post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/ndpmon.8 \ ${WRKSRC}/create_html_table.py \ ${WRKSRC}/demopipeprogram.pl.sample \ ${WRKSRC}/config_ndpmon.xml.in \ ${WRKSRC}/config_ndpmon.xml (cd ${WRKSRC}; ${MAKE} clean) do-install: ${INSTALL_MAN} ${WRKSRC}/ndpmon.8 ${PREFIX}/man/man8 ${INSTALL_PROGRAM} ${WRKSRC}/ndpmon ${PREFIX}/sbin ${MKDIR} ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/*.dtd ${DATADIR} ${INSTALL_SCRIPT} ${WRKSRC}/demopipeprogram.pl.sample ${DATADIR} .if ${PORT_OPTIONS:MPY4SUITE} ${INSTALL_SCRIPT} ${WRKSRC}/create_html_table.py ${DATADIR} .endif .if ${PORT_OPTIONS:MMACRESOLV} ${MKDIR} ${DATADIR}/plugins/mac_resolv ${INSTALL_SCRIPT} ${WRKSRC}/plugins/mac_resolv/make-manuf ${DATADIR}/plugins/mac_resolv ${INSTALL_DATA} ${WRKSRC}/plugins/mac_resolv/*.tmpl ${DATADIR}/plugins/mac_resolv ${INSTALL_DATA} ${WRKSRC}/plugins/mac_resolv/manuf ${DATADIR}/plugins/mac_resolv .endif ${MKDIR} ${ETCDIR} ${INSTALL_DATA} ${WRKSRC}/config_ndpmon.xml ${ETCDIR}/config_ndpmon.xml-dist ${MKDIR} ${PREFIX}/var/ndpmon ${INSTALL_DATA} ${WRKSRC}/neighbor_list.xml ${PREFIX}/var/ndpmon/neighbor_list.xml .if ${PORT_OPTIONS:MDOCS} post-install: ${MKDIR} ${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} .endif .if ${PORT_OPTIONS:MMACRESOLV} @${CAT} ${PKGMESSAGE}.MACRESOLV .endif .include Index: head/net-mgmt/netams-front/Makefile =================================================================== --- head/net-mgmt/netams-front/Makefile (revision 362805) +++ head/net-mgmt/netams-front/Makefile (revision 362806) @@ -1,49 +1,49 @@ # Created by: Alexey V. Degtyarev # $FreeBSD$ PORTNAME= netams-front PORTVERSION= 0.4 CATEGORIES= net-mgmt www MASTER_SITES= ftp://ftp.renatasystems.org/pub/FreeBSD/ports/distfiles/ -MAINTAINER= alexey@renatasystems.org +MAINTAINER= ports@FreeBSD.org COMMENT= PHP-based web interface for NeTAMS software NO_BUILD= yes USE_MYSQL= yes WANT_PHP_WEB= yes USE_PHP= mysql pcre SUB_FILES= pkg-message # This target is only meant to be used by the port maintainer. x-generate-plist: build cd ${WRKSRC}/www; \ ${FIND} . ! -type d ! -name '*.orig' | ${SORT} | \ ${SED} -e "s,^\.,%%WWWDIR%%," >${.CURDIR}/pkg-plist.tmp ; \ ${FIND} . -type d | ${SORT} -r | ${SED} \ -e "s,^\.$$,@dirrmtry %%WWWDIR%%," \ -e "s,^\.,@dirrm %%WWWDIR%%," >>${.CURDIR}/pkg-plist.tmp NO_STAGE= yes do-install: @cd ${WRKSRC}/www; \ for src in $$( ${FIND} . ! -name '*.orig' -a \ ! -name 'config.php.simple' ) ; do \ dst=${WWWDIR}$${src#.} ; \ if ${TEST} -d $$src ; then \ ${MKDIR} $$dst ; \ else \ ${INSTALL_DATA} $$src $$dst ; \ fi \ done @${MKDIR} ${EXAMPLESDIR} @${INSTALL_DATA} ${WRKSRC}/www/config.php.simple \ ${EXAMPLESDIR}/config.php @if ! ${TEST} -f ${WWWDIR}/config.php; then \ ${INSTALL_DATA} ${WRKSRC}/www/config.php.simple \ ${WWWDIR}/config.php; \ fi @${CAT} ${PKGMESSAGE} .include Index: head/net-mgmt/nfdump/Makefile =================================================================== --- head/net-mgmt/nfdump/Makefile (revision 362805) +++ head/net-mgmt/nfdump/Makefile (revision 362806) @@ -1,105 +1,105 @@ # Created by: Janos.Mohacsi@bsd.hu # $FreeBSD$ PORTNAME= nfdump PORTVERSION= 1.6.9 CATEGORIES= net-mgmt MASTER_SITES= SF/${PORTNAME}/stable/${PORTNAME}-${PORTVERSION} -MAINTAINER= jmohacsi@bsd.hu +MAINTAINER= ports@FreeBSD.org COMMENT= Command-line tools to collect and process NetFlow data LICENSE= BSD LICENSE_FILE= ${WRKSRC}/BSD-license.txt GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes USE_CSTD= gnu89 #flow-tools support OPTIONS_DEFINE= FT2NFDUMP NFPROFILE FIXTIMEBUG READPCAP NFTRACK \ SFLOW NFDUMP15 OPTIONS_DEFAULT= NFPROFILE FT2NFDUMP_DESC= With Flow-tools to nfdump converter NFPROFILE_DESC= With nfprofile (nfsen requires it) FIXTIMEBUG_DESC= With fixing swap time bug of some v5 READPCAP_DESC= With pcap support NFTRACK_DESC= With PortTracker support SFLOW_DESC= Build sflow collector daemon also NFDUMP15_DESC= Enable compatbility with version 1.5 NO_STAGE= yes post-patch: @${REINPLACE_CMD} 's|-ggdb||' ${WRKSRC}/bin/Makefile.in .include #for compatibility # .if ${PORT_OPTIONS:MNFDUMP15} CONFIGURE_ARGS+= --enable-compat15 .else CONFIGURE_ARGS+= --disable-compat15 .endif PLIST_FILES= bin/nfanon bin/nfcapd bin/nfdump bin/nfexpire bin/nfreplay MAN1= nfanon.1 nfcapd.1 nfdump.1 nfexpire.1 nfreplay.1 MAN1+= ft2nfdump.1 nfprofile.1 sfcapd.1 PORTDOCS= AUTHORS ChangeLog INSTALL README .if ${PORT_OPTIONS:MFIXTIMEBUG} CONFIGURE_ARGS+= --enable-fixtimebug .else CONFIGURE_ARGS+= --disable-fixtimebug .endif .if ${PORT_OPTIONS:MNFPROFILE} CONFIGURE_ARGS+= --enable-nfprofile PLIST_FILES+= bin/nfprofile .else CONFIGURE_ARGS+= --disable-nfprofile .endif .if ${PORT_OPTIONS:MNFTRACK} CONFIGURE_ARGS+= --enable-nftrack PLIST_FILES+= bin/nftrack .else CONFIGURE_ARGS+= --disable-nftrack .endif .if ${PORT_OPTIONS:MNFPROFILE} || ${PORT_OPTIONS:MNFTRACK} CONFIGURE_ARGS+= --with-rrdpath=${LOCALBASE} BUILD_DEPENDS+= rrdtool:${PORTSDIR}/databases/rrdtool RUN_DEPENDS+= rrdtool:${PORTSDIR}/databases/rrdtool .endif #flow-tools support .if ${PORT_OPTIONS:MFT2NFDUMP} BUILD_DEPENDS+= flow-cat:${PORTSDIR}/net-mgmt/flow-tools CONFIGURE_ARGS+= --enable-ftconv --with-ftpath=${LOCALBASE} PLIST_FILES+= bin/ft2nfdump .endif .if ${PORT_OPTIONS:MREADPCAP} CONFIGURE_ARGS+= --enable-readpcap .else CONFIGURE_ARGS+= --disable-readpcap .endif #sflow capture support .if ${PORT_OPTIONS:MSFLOW} CONFIGURE_ARGS+= --enable-sflow PLIST_FILES+= bin/sfcapd #MAN1+= sfcapd.1 .else CONFIGURE_ARGS+= --disable-sflow .endif .if ${PORT_OPTIONS:MDOCS} post-install: ${MKDIR} ${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} .endif .include Index: head/net-mgmt/pandorafms_agent/Makefile =================================================================== --- head/net-mgmt/pandorafms_agent/Makefile (revision 362805) +++ head/net-mgmt/pandorafms_agent/Makefile (revision 362806) @@ -1,90 +1,90 @@ # Created by: KIKUCHI Koichiro # $FreeBSD$ PORTNAME= pandora_agent PORTVERSION= ${PANDORA_VERSION} PORTREVISION= 1 CATEGORIES= net-mgmt -MAINTAINER= koichiro@rworks.jp +MAINTAINER= ports@FreeBSD.org COMMENT= Pandora FMS agent, Perl version LICENSE= ${PANDORA_LICENSE} LICENSE_FILE= ${PANDORA_LICENSE_FILE} OPTIONS_DEFINE= TENTACLE_SERVER OPTIONS_DEFAULT= TENTACLE_SERVER TENTACLE_SERVER_DESC= Install tentalce_server USES= perl5 SUB_LIST+= PERL="${PERL}" MAN1= pandora_agent.1 tentacle_client.1 MANCOMPRESSED= yes SUB_FILES= pkg-message USE_RC_SUBR= ${PORTNAME} NO_STAGE= yes .include "${.CURDIR}/../pandorafms_server/bsd.pandora.mk" PORTDOCS+= README .include .if ${PORT_OPTIONS:MTENTACLE_SERVER} CONFLICTS= pandora_server-4* PLIST_SUB+= TENTACLE_SERVER="" .else PLIST_SUB+= TENTACLE_SERVER="@comment " .endif post-patch: .if ! ${PORT_OPTIONS:MTENTACLE_SERVER} @${REINPLACE_CMD} \ -e '/TENTACLE_SERVER/s/^/#/' \ ${WRKSRC}/pandora_agent_installer .endif .if defined(NO_INSTALL_MANPAGES) @${REINPLACE_CMD} \ -e '/PANDORA_MAN/s/^/#/' \ ${WRKSRC}/pandora_agent_installer .endif @${REINPLACE_CMD} -E \ -e 's|%%PREFIX%%|${PREFIX}|g' \ -e 's|%%DATADIR%%|${DATADIR}|g' \ -e 's|%%MAN1PREFIX%%|${MAN1PREFIX}|g' \ -e 's|%%PANDORA_ETCDIR%%|${PANDORA_ETCDIR}|g' \ -e 's|%%PANDORA_HOMEDIR%%|${PANDORA_HOMEDIR}|g' \ ${WRKSRC}/pandora_agent_installer @${REINPLACE_CMD} -i "" \ -e 's,/bin/bash,/bin/sh,' \ -e 's,md5sum,md5 -r,' \ ${WRKSRC}/plugins/files_indir @${REINPLACE_CMD} -i "" \ -e 's,/usr/bin/perl,${PERL},g' \ `${GREP} -lr /usr/bin/perl ${WRKSRC} | ${GREP} -v pandora_agent_installer` @${REINPLACE_CMD} -i "" \ -e 's,/usr/local,${PREFIX},g' \ ${WRKSRC}/plugins/pandora_update @${REINPLACE_CMD} \ -e 's,`ifconfig ,`/sbin/ifconfig ,g' \ -e 's,tentacle_client ,${PREFIX}/bin/tentacle_client ,g' \ ${WRKSRC}/pandora_agent do-install: @cd ${WRKSRC} && ${SH} pandora_agent_installer --force-install post-install: .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} .for x in ${PORTDOCS} @${INSTALL_DATA} ${WRKSRC}/${x} ${DOCSDIR} .endfor .endif @if [ ! -e ${ETCDIR}/pandora_agent.conf ]; then \ cd ${ETCDIR} && ${CP} -p pandora_agent.conf.sample pandora_agent.conf; \ fi @${CAT} ${PKGMESSAGE} .include Index: head/net-mgmt/pandorafms_console/Makefile =================================================================== --- head/net-mgmt/pandorafms_console/Makefile (revision 362805) +++ head/net-mgmt/pandorafms_console/Makefile (revision 362806) @@ -1,73 +1,73 @@ # Created by: KIKUCHI Koichiro # $FreeBSD$ PORTNAME= pandora_console PORTVERSION= ${PANDORA_VERSION} PORTREVISION= 1 CATEGORIES= net-mgmt -MAINTAINER= koichiro@rworks.jp +MAINTAINER= ports@FreeBSD.org COMMENT= Pandora FMS console LICENSE= ${PANDORA_LICENSE} LICENSE_FILE= ${PANDORA_LICENSE_FILE} RUN_DEPENDS= ${LOCALBASE}/bin/twopi:${PORTSDIR}/graphics/graphviz OPTIONS_DEFINE= PGSQL PGSQL_DESC= Use PostgreSQL backend (experimental) USE_APACHE_RUN= 22+ USE_PHP= curl gd gettext json ldap mbstring mysql snmp session \ xml zip zlib WANT_PHP_WEB= yes SUB_FILES+= pandora_console.conf SUB_LIST+= APACHEETCDIR=${PREFIX}/${APACHEETCDIR} NO_STAGE= yes .include "${.CURDIR}/../pandorafms_server/bsd.pandora.mk" .include .if ${PORT_OPTIONS:MPGSQL} USE_PHP+= pgsql .endif post-patch: @${REINPLACE_CMD} \ -e "s|%%WWWDIR%%|${WWWDIR}|g" \ ${WRKSRC}/pandora_console_install @${REINPLACE_CMD} \ -e "s|/usr/bin|${LOCALBASE}/bin|g" \ ${WRKSRC}/pandoradb.data*.sql @${REINPLACE_CMD} \ -e 's|/bin/bash|/bin/sh|g' \ ${WRKSRC}/extras/check_other_languages.sh \ ${WRKSRC}/include/languages/extract_newlines.sh do-install: @cd ${WRKSRC} && ${SH} pandora_console_install --force-install post-install: .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} .for x in ${PORTDOCS} @${INSTALL_DATA} ${WRKSRC}/${x} ${DOCSDIR} .endfor .endif @cd ${WWWDIR} \ && ${RM} -rf pandora_console_install* \ pandora_console_upgrade *.spec \ extras/check_other_languages.sh.bak \ include/languages/extract_newlines.sh.bak \ *.sql.bak COPYING ${PORTDOCS} DEBIAN/ @if [ -e ${WWWDIR}/include/config.php ]; then \ ${MV} ${WWWDIR}/install.php ${WWWDIR}/install.done; \ fi; @${MKDIR} ${PREFIX}/${APACHEETCDIR}/Includes @${INSTALL_DATA} ${WRKDIR}/pandora_console.conf \ ${PREFIX}/${APACHEETCDIR}/Includes/pandora_console.conf @${LN} -sf ${_LICENSE_DIR}/${LICENSE} ${WWWDIR}/COPYING .include Index: head/net-mgmt/pandorafms_server/Makefile =================================================================== --- head/net-mgmt/pandorafms_server/Makefile (revision 362805) +++ head/net-mgmt/pandorafms_server/Makefile (revision 362806) @@ -1,148 +1,148 @@ # Created by: KIKUCHI Koichiro # $FreeBSD$ PORTNAME= pandora_server PORTVERSION= ${PANDORA_VERSION} PORTREVISION= 2 CATEGORIES= net-mgmt -MAINTAINER= koichiro@rworks.jp +MAINTAINER= ports@FreeBSD.org COMMENT= Pandora FMS server LICENSE= ${PANDORA_LICENSE} LICENSE_FILE= ${PANDORA_LICENSE_FILE} BUILD_DEPENDS= p5-DBI>=0:${PORTSDIR}/databases/p5-DBI \ p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser \ p5-IO-Socket-INET6>=0:${PORTSDIR}/net/p5-IO-Socket-INET6 \ p5-NetAddr-IP>=0:${PORTSDIR}/net-mgmt/p5-NetAddr-IP \ net-snmp>=0:${PORTSDIR}/net-mgmt/net-snmp \ p5-Socket6>=0:${PORTSDIR}/net/p5-Socket6 \ p5-XML-Simple>=0:${PORTSDIR}/textproc/p5-XML-Simple \ p5-XML-Twig>=0:${PORTSDIR}/textproc/p5-XML-Twig RUN_DEPENDS= p5-DBI>=0:${PORTSDIR}/databases/p5-DBI \ p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser \ p5-IO-Socket-INET6>=0:${PORTSDIR}/net/p5-IO-Socket-INET6 \ p5-NetAddr-IP>=0:${PORTSDIR}/net-mgmt/p5-NetAddr-IP \ net-snmp>=0:${PORTSDIR}/net-mgmt/net-snmp \ p5-Socket6>=0:${PORTSDIR}/net/p5-Socket6 \ p5-XML-Simple>=0:${PORTSDIR}/textproc/p5-XML-Simple \ p5-XML-Twig>=0:${PORTSDIR}/textproc/p5-XML-Twig \ p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ p5-DBD-mysql>=4:${PORTSDIR}/databases/p5-DBD-mysql \ ${LOCALBASE}/bin/wmic:${PORTSDIR}/net-mgmt/wmi-client \ ${LOCALBASE}/bin/nmap:${PORTSDIR}/security/nmap \ p5-Storable>=0:${PORTSDIR}/devel/p5-Storable OPTIONS_DEFINE= TENTACLE XPROBE PGSQL ORACLE EXTRAS OPTIONS_DEFAULT= TENTACLE XPROBE EXTRAS TENTACLE_DESC= Install tentacle_server XPROBE_DESC= Install xprobe PGSQL_DESC= Use PostgreSQL backend (experimental) ORACLE_DESC= Use Oracle backend (experimental) EXTRAS_DESC= Extra dependencies for util scripts USES= perl5 USE_PERL5= configure SUB_LIST+= PERL="${PERL}" MAN1= pandora_server.1 MAN3= PandoraFMS::Core.3 \ PandoraFMS::GIS.3 \ PandoraFMS::GeoIP.3 \ PandoraFMS::NmapParser.3 \ PandoraFMS::Sendmail.3 \ PandoraFMS::Tools.3 \ PandoraFMS::Traceroute::PurePerl.3 \ PandoraFMS::Traceroute.3 SUB_FILES= pkg-message 199.clean-pandoradb USE_RC_SUBR= ${PORTNAME} NO_STAGE= yes .include "${.CURDIR}/bsd.pandora.mk" PORTDOCS+= README .include .if ! ${PORT_OPTIONS:MTENTACLE} PLIST_SUB+= TENTACLE="@comment " .else PLIST_SUB+= TENTACLE="" USE_RC_SUBR+= tentacle_server MAN1+= tentacle_server.1 .endif .if ${PORT_OPTIONS:MXPROBE} RUN_DEPENDS+= ${LOCALBASE}/bin/xprobe2:${PORTSDIR}/net/xprobe .endif .if ${PORT_OPTIONS:MPGSQL} RUN_DEPENDS+= p5-DBD-Pg>=0:${PORTSDIR}/databases/p5-DBD-Pg .endif .if ${PORT_OPTIONS:MORACLE} RUN_DEPENDS+= p5-DBD-Oracle>=0:${PORTSDIR}/databases/p5-DBD-Oracle .endif .if ${PORT_OPTIONS:MEXTRAS} # plugin/bgp_pluin.pl RUN_DEPENDS+= p5-Net-SNMP>=0:${PORTSDIR}/net-mgmt/p5-Net-SNMP # plugin/multicast.pl RUN_DEPENDS+= p5-IO-Socket-Multicast>=0:${PORTSDIR}/net/p5-IO-Socket-Multicast # plugin/openvpn_pandoraplugin.pl RUN_DEPENDS+= p5-Net-Telnet>=0:${PORTSDIR}/net/p5-Net-Telnet # plugin/integria_plugin/integria_plugin.sh, plugin/webcheck_plugin.sh, # plugin/babel_plugin/babel_plugin.sh, plugin/create_integria_incident.sh RUN_DEPENDS+= ${LOCALBASE}/bin/wget:${PORTSDIR}/ftp/wget # plugin/ipmi-plugin.pl, recon_scripts/ipmi-recon.pl RUN_DEPENDS+= ${LOCALBASE}/sbin/ipmi-sensors:${PORTSDIR}/sysutils/freeipmi .endif .if exists(${PERL}) PERL_THREADS!= ${PERL} -V::usethreads . if ${PERL_THREADS}!="'define';" IGNORE= needs a threaded Perl, build with WITH_THREADS=yes flag and try again . endif .else IGNORE= needs an existing installation of Perl built with WITH_THREADS=yes .endif post-patch: .if defined(NO_INSTALL_MANPAGES) @${REINPLACE_CMD} -e \ -e '/%%MAN/s/^/#/ \ ${WRKSRC}/pandora_server_installer .endif @${REINPLACE_CMD} \ -e 's|%%PREFIX%%|${PREFIX}|g' \ -e 's|%%DATADIR%%|${DATADIR}|g' \ -e 's|%%MAN1PREFIX%%|${MAN1PREFIX}|g' \ -e 's|%%PANDORA_ETCDIR%%|${PANDORA_ETCDIR}|g' \ -e 's|%%PANDORA_LOGDIR%%|${PANDORA_LOGDIR}|g' \ -e 's|%%PANDORA_SPOOLDIR%%|${PANDORA_SPOOLDIR}|g' \ ${WRKSRC}/pandora_server_installer @${REINPLACE_CMD} -i "" \ -e 's,/usr/bin/perl,${PERL},g' \ `${GREP} -rl /usr/bin/perl ${WRKSRC} | ${GREP} -v pandora_server_installer` post-install: .if ${PORT_OPTIONS:MTENTACLE} @cd ${WRKSRC} && ${SH} pandora_server_installer --install .else @cd ${WRKSRC} && ${SH} pandora_server_installer --install --no-tentacle .endif @${RM} -f ${PREFIX}/lib/perl5/${PERL_VER}/${PERL_ARCH}/perllocal.pod .if !defined(NOPORTDOC) @${MKDIR} ${DOCSDIR} .for x in ${PORTDOCS} @${INSTALL_DATA} ${WRKSRC}/${x} ${DOCSDIR} .endfor .endif @if [ ! -e ${ETCDIR}/pandora_server.conf ]; then \ ${CP} -p ${ETCDIR}/pandora_server.conf.sample \ ${ETCDIR}/pandora_server.conf; \ fi @${FIND} ${DATADIR} -type l -name PandoraFMS -delete @${MKDIR} ${PREFIX}/etc/periodic/daily @${INSTALL_SCRIPT} ${WRKDIR}/199.clean-pandoradb ${PREFIX}/etc/periodic/daily/ @${CAT} ${PKGMESSAGE} .include Index: head/net-mgmt/ramond/Makefile =================================================================== --- head/net-mgmt/ramond/Makefile (revision 362805) +++ head/net-mgmt/ramond/Makefile (revision 362806) @@ -1,48 +1,48 @@ # Created by: janos.mohacsi@bsd.hu # $FreeBSD$ PORTNAME= ramond PORTVERSION= 0.5 PORTREVISION= 4 CATEGORIES= net-mgmt ipv6 MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/_${PORTVERSION}/ -MAINTAINER= jmohacsi@bsd.hu +MAINTAINER= ports@FreeBSD.org COMMENT= On-link IPv6 router advertisement monitoring and reporting daemon LICENSE= BSD LICENSE_FILE= ${WRKSRC}/LICENSE WRKSRC= ${WRKDIR}/${PORTNAME} USE_BZIP2= YES USE_GNOME= libxml2 USE_RC_SUBR= ramon PORTDOCS= README NO_STAGE= yes .include LIB_DEPENDS+= libapr-1.so:${PORTSDIR}/devel/apr1 post-patch: @${REINPLACE_CMD} -e 's|/usr/bin/gcc|${CC}|g' ${WRKSRC}/Makefile @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/src/main.c @${REINPLACE_CMD} -e 's|"/etc/|"${PREFIX}/etc/|g' ${WRKSRC}/src/main.c do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ramond ${PREFIX}/sbin ${MKDIR} ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/*.dtd \ ${DATADIR} ${INSTALL_SCRIPT} ${WRKSRC}/demo.pl \ ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/ramond.conf.example ${PREFIX}/etc/ .if !defined(NOPORTDOCS) post-install: ${MKDIR} ${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} .endif .include Index: head/net-mgmt/rancid-devel/Makefile =================================================================== --- head/net-mgmt/rancid-devel/Makefile (revision 362805) +++ head/net-mgmt/rancid-devel/Makefile (revision 362806) @@ -1,96 +1,96 @@ # Created by: janos.mohacsi@bsd.hu # $FreeBSD$ PORTNAME= rancid PORTVERSION= 2.3.2a10 PORTREVISION= 2 CATEGORIES= net-mgmt MASTER_SITES= ftp://ftp.shrubbery.net/pub/rancid/ PKGNAMESUFFIX= -devel -MAINTAINER= jmohacsi@bsd.hu +MAINTAINER= ports@FreeBSD.org COMMENT= Really Awesome New Cisco confIg Differ LIB_DEPENDS= libexpect.so:${PORTSDIR}/lang/expect RUN_DEPENDS= p5-LockFile-Simple>=0:${PORTSDIR}/devel/p5-LockFile-Simple USES= perl5 gmake SUB_FILES= pkg-message GNU_CONFIGURE= yes CONFIGURE_ARGS= \ --localstatedir=${PREFIX}/var/${PORTNAME}/ \ --bindir=${PREFIX}/libexec/${PORTNAME}/ \ --sysconfdir=${PREFIX}/etc/${PORTNAME}/ MAN1= agmrancid.1 alogin.1 arancid.1 avologin.1 avorancid.1 \ blogin.1 brancid.1 cat5rancid.1 clogin.1 \ control_rancid.1 cssrancid.1 elogin.1 erancid.1 f10rancid.1 \ f5rancid.1 flogin.1 fnrancid.1 francid.1 hlogin.1 hrancid.1 \ htlogin.1 htrancid.1 jerancid.1 jlogin.1 jrancid.1 lg_intro.1 \ mrancid.1 nlogin.1 nrancid.1 nslogin.1 nsrancid.1 nxrancid.1 \ par.1 prancid.1 rancid-cvs.1 rancid-run.1 rancid.1 \ rancid_intro.1 rivlogin.1 rivrancid.1 \ rrancid.1 srancid.1 tlogin.1 tntlogin.1 tntrancid.1 trancid.1 \ xrancid.1 zrancid.1 MAN5= lg.conf.5 cloginrc.5 rancid.conf.5 router.db.5 OLDCONFIG_FILE1= bin/env OLDCONFIG_FILE2= util/lg/lg.conf NEWERCONFIG_FILES1= etc/rancid.conf NEWERCONFIG_FILES2= etc/lg.conf NEWCONFIG_FILES= rancid.conf lg.conf NO_STAGE= yes pre-everything:: @ ${ECHO} "Make sure your rancid repository is quiet before upgrading; disable rancid cron jobs" post-install: ${LN} -s ${PREFIX}/libexec/${PORTNAME}/rancid-cvs ${PREFIX}/bin ${LN} -s ${PREFIX}/libexec/${PORTNAME}/rancid-run ${PREFIX}/bin .if !defined(BATCH) @ ${ECHO} @ ${CAT} ${PKGMESSAGE} @ ${ECHO} .endif .for file in ${NEWCONFIG_FILES} @ if [ -f ${PREFIX}/etc/${PORTNAME}/${file} ] ; then \ ${ECHO} "WARNING: *** new ${file} file is installed as ${PREFIX}/rancid/${file}.sample"; \ ${ECHO} " : *** review ${file}.sample for new/deprecated switches or install in place ${file}"; \ fi .endfor @ if [ -f ${PREFIX}/rancid/${NEWERCONFIG_FILE1} ] ; then \ ${ECHO} "WARNING: *** ${PREFIX}/rancid/${NEWERCONFIG_FILE1} has been replaced with "; \ ${ECHO} " : *** ${PREFIX}/etc/${PORTNAME}/rancid.conf. Merge from sample and old file "; \ fi @ if [ -f ${PREFIX}/rancid/${NEWERCONFIG_FILE2} ] ; then \ ${ECHO} "WARNING: *** ${PREFIX}/rancid/${NEWERCONFIG_FILE2} has been replaced with "; \ ${ECHO} " : *** ${PREFIX}/etc/${PORTNAME}/lg.conf. Merge from sample and old file "; \ fi @ if [ -f ${PREFIX}/rancid/${NEWERCONFIG_FILE1} -o \ -f ${PREFIX}/rancid/${NEWERCONFIG_FILE2} ] ; then \ ${ECHO} "WARNING: *** New CVS Repository will be stored ${PREFIX}/var/${PORTNAME}/ "; \ ${ECHO} " : *** Copy the repository if you want to keep the history "; \ fi @ if [ -f ${PREFIX}/rancid/${OLDCONFIG_FILE1} ] ; then \ ${ECHO} "WARNING: *** ${PREFIX}/rancid/${OLDCONFIG_FILE1} has been replaced with "; \ ${ECHO} " : *** ${PREFIX}/etc/${PORTNAME}/rancid.conf. Merge from sample and old file "; \ fi @ if [ -f ${PREFIX}/rancid/${OLDCONFIG_FILE2} ] ; then \ ${ECHO} "WARNING: *** ${PREFIX}/rancid/${OLDCONFIG_FILE2} has been replaced with "; \ ${ECHO} " : *** ${PREFIX}/etc/${PORTNAME}/lg.conf. Merge from sample and old file "; \ fi @ if [ -f ${PREFIX}/rancid/${OLDCONFIG_FILE1} -o \ -f ${PREFIX}/rancid/${OLDCONFIG_FILE2} ] ; then \ ${ECHO} "WARNING: *** New CVS Repository will be stored ${PREFIX}/rancid/var "; \ ${ECHO} " : *** Copy the repository if you want to keep the history "; \ fi .include .if ${ARCH} == "sparc64" BROKEN= Does not configure on sparc64 .endif .include Index: head/net-mgmt/sipcalc/Makefile =================================================================== --- head/net-mgmt/sipcalc/Makefile (revision 362805) +++ head/net-mgmt/sipcalc/Makefile (revision 362806) @@ -1,26 +1,26 @@ # Created by: Janos.Mohacsi@dante.org.uk # $FreeBSD$ PORTNAME= sipcalc PORTVERSION= 1.1.5 CATEGORIES= net-mgmt ipv6 MASTER_SITES= http://www.routemeister.net/projects/sipcalc/files/ -MAINTAINER= jmohacsi@bsd.hu +MAINTAINER= ports@FreeBSD.org COMMENT= Sipcalc is an IP subnet calculator with IPv6 support GNU_CONFIGURE= yes MAN1= sipcalc.1 DOC_FILES= doc/sipcalc.txt ChangeLog README NO_STAGE= yes post-install: .ifndef(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for file in ${DOC_FILES} @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} .endfor .endif .include Index: head/net-mgmt/wmi-client/Makefile =================================================================== --- head/net-mgmt/wmi-client/Makefile (revision 362805) +++ head/net-mgmt/wmi-client/Makefile (revision 362806) @@ -1,27 +1,27 @@ # Created by: KIKUCHI Koichiro # $FreeBSD$ PORTNAME= wmi PORTVERSION= 1.3.16 CATEGORIES= net-mgmt MASTER_SITES= http://dev.zenoss.org/trac/export/26435/trunk/inst/externallibs/ \ http://www.openvas.org/download/wmi/ \ http://mirrors.rit.edu/zi/ PKGNAMESUFFIX= -client -MAINTAINER= koichiro@rworks.jp +MAINTAINER= ports@FreeBSD.org COMMENT= DCOM/WMI client implementation CONFLICTS= zenoss-3* USE_AUTOTOOLS= autoconf:env USE_PYTHON_BUILD= yes USES= iconv gmake tar:bzip2 USE_LDCONFIG= yes MAKEFILE= GNUmakefile MAKE_ENV= ZENHOME="${PREFIX}" PY_LIBDIR="${PYTHONPREFIX_SITELIBDIR}" PYTHON="${PYTHON_CMD}" ALL_TARGET= build NO_STAGE= yes .include Index: head/net-mgmt/yabm/Makefile =================================================================== --- head/net-mgmt/yabm/Makefile (revision 362805) +++ head/net-mgmt/yabm/Makefile (revision 362806) @@ -1,29 +1,29 @@ # Created by: Fredrik Lindberg # $FreeBSD$ PORTNAME= yabm PORTVERSION= 0.2.1 PORTREVISION= 2 CATEGORIES= net-mgmt MASTER_SITES= http://www.shapeshifter.se/code/yabm/release/ -MAINTAINER= fli@shapeshifter.se +MAINTAINER= ports@FreeBSD.org COMMENT= Yet Another Bandwidth Meter, somewhat resembles the Linux bwbar LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png USE_RC_SUBR= yes RC_SCRIPTS_SUB= PREFIX=${PREFIX} RC_SUBR=/etc/rc.subr SUB_FILES= pkg-message NO_STAGE= yes post-extract: @${SED} ${RC_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ ${WRKSRC}/scripts/yabm.sh.sample > ${WRKSRC}/scripts/yabm.sh post-install: ${INSTALL_SCRIPT} ${WRKSRC}/scripts/yabm.sh ${PREFIX}/etc/rc.d/yabm.sh @${CAT} ${PKGMESSAGE} .include