Date: Sun, 13 Oct 2013 12:59:00 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r330225 - head/security/snoopy Message-ID: <201310131259.r9DCx0FQ052820@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sun Oct 13 12:59:00 2013 New Revision: 330225 URL: http://svnweb.freebsd.org/changeset/ports/330225 Log: - Update to 1.9.0 - Fix file permission: use INSTALL_LIB for shared library - Add more PORTDOCS - Update WWW - Reformat pkg-descr Changes: https://github.com/a2o/snoopy/blob/master/ChangeLog Modified: head/security/snoopy/Makefile head/security/snoopy/distinfo (contents, props changed) head/security/snoopy/pkg-descr (contents, props changed) Modified: head/security/snoopy/Makefile ============================================================================== --- head/security/snoopy/Makefile Sun Oct 13 12:14:19 2013 (r330224) +++ head/security/snoopy/Makefile Sun Oct 13 12:59:00 2013 (r330225) @@ -2,9 +2,10 @@ # $FreeBSD$ PORTNAME= snoopy -PORTVERSION= 1.8.0 +PORTVERSION= 1.9.0 CATEGORIES= security -MASTER_SITES= SF/${PORTNAME}logger/ +MASTER_SITES= GH \ + GHC MAINTAINER= sunpoet@FreeBSD.org COMMENT= execve() wrapper and logger @@ -13,21 +14,27 @@ LICENSE= GPLv2 OPTIONS_DEFINE= DOCS -PLIST_FILES= lib/snoopy.so bin/detect -PORTDOCS= README +PLIST_FILES= bin/detect lib/snoopy.so +PORTDOCS= ChangeLog README.md TODO GNU_CONFIGURE= yes USES= gmake +GH_ACCOUNT= a2o +GH_COMMIT= 34306f7 +GH_PROJECT= ${PORTNAME} +GH_TAGNAME= ${PORTNAME}-${PORTVERSION} +USE_GITHUB= yes + .include <bsd.port.options.mk> post-patch: - @${REINPLACE_CMD} 's|/usr/local|${PREFIX}|g' ${WRKSRC}/README - @${REINPLACE_CMD} '/^LIBS.*/d' ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} '/^LIBS=/d' ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} 's|/usr/local|${PREFIX}|g' ${WRKSRC}/README.md do-install: ${INSTALL_PROGRAM} ${WRKSRC}/detect ${STAGEDIR}${PREFIX}/bin/ - ${INSTALL_PROGRAM} ${WRKSRC}/snoopy.so ${STAGEDIR}${PREFIX}/lib/ + ${INSTALL_LIB} ${WRKSRC}/snoopy.so ${STAGEDIR}${PREFIX}/lib/ .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${STAGEDIR}${DOCSDIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ Modified: head/security/snoopy/distinfo ============================================================================== --- head/security/snoopy/distinfo Sun Oct 13 12:14:19 2013 (r330224) +++ head/security/snoopy/distinfo Sun Oct 13 12:59:00 2013 (r330225) @@ -1,2 +1,2 @@ -SHA256 (snoopy-1.8.0.tar.gz) = 5af8a6cfdca902f6f49fa5dfb0ff3f1067bc216a6a2d37b6d804519c7cfc1e0c -SIZE (snoopy-1.8.0.tar.gz) = 90110 +SHA256 (snoopy-1.9.0.tar.gz) = 7870fa448f9428816f411c93043c64e78453546c08768c51f5c4fdfd82fce90c +SIZE (snoopy-1.9.0.tar.gz) = 56560 Modified: head/security/snoopy/pkg-descr ============================================================================== --- head/security/snoopy/pkg-descr Sun Oct 13 12:14:19 2013 (r330224) +++ head/security/snoopy/pkg-descr Sun Oct 13 12:59:00 2013 (r330225) @@ -1,9 +1,8 @@ -snoopy is merely a shared library that is used as a wrapper -to the execve() function provided by libc as to log every call -to syslog (authpriv). system administrators may find snoopy -useful in tasks such as light/heavy system monitoring, tracking other -administrator's actions as well as getting a good 'feel' of -what's going on in the system (for example apache running cgi +snoopy is merely a shared library that is used as a wrapper to the execve() +function provided by libc as to log every call to syslog (authpriv). System +administrators may find snoopy useful in tasks such as light/heavy system +monitoring, tracking other administrator's actions as well as getting a good +'feel' of what's going on in the system (for example Apache running CGI scripts). -WWW: http://sourceforge.net/projects/snoopylogger/ +WWW: https://github.com/a2o/snoopy
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310131259.r9DCx0FQ052820>