1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00
freebsd-ports/security/snoopy/Makefile
Dmitry Marakasov 535382b891 - Retire MASTER_SITE_SOURCEFORGE_EXTENDED, it's no longer needed - all mirrors actually have all distfiles
- Merge all SF mirrors to MASTER_SITE_SOURCEFORGE, resort according to quick download speed survey
- Fix MASTER_SITES for all port that have used SOURCEFORGE_EXTENTED

Approved by:	portmgr (pav)
2009-09-02 15:01:56 +00:00

34 lines
844 B
Makefile

# New ports collection makefile for: snoopy
# Date created: 3 February 2007
# Whom: Philippe Audeoud <jadawin@tuxaco.net>
# $FreeBSD$
PORTNAME= snoopy
PORTVERSION= 1.3
CATEGORIES= security
MASTER_SITES= SF/${PORTNAME}logger/${PORTNAME}logger/${PORTVERSION}
MAINTAINER= jadawin@FreeBSD.org
COMMENT= An execve() wrapper and logger
PLIST_FILES= lib/snoopy.so bin/detect
PORTDOCS= README
.include <bsd.port.pre.mk>
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
CFLAGS+= -fPIC
.endif
post-patch:
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|' ${WRKSRC}/README
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/snoopy.so ${PREFIX}/lib
${INSTALL_PROGRAM} ${WRKSRC}/detect ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.post.mk>