9b4627929c
Strip binaries USES=libtool Add a DOCS option Replace USE_GCC=4.2+ by USE_GCC=any (does not build with clang but build with all the supported gcc versions)
32 lines
675 B
Makefile
32 lines
675 B
Makefile
# Created by: Thomas-Martin Seck <tmseck@web.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libecap
|
|
PORTVERSION= 0.2.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= www security
|
|
MASTER_SITES= http://www.measurement-factory.com/tmp/ecap/
|
|
|
|
MAINTAINER= tmseck@FreeBSD.org
|
|
COMMENT= Library for module based network content analysis
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
USES= libtool
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
USE_GCC= any
|
|
INSTALL_TARGET= install-strip
|
|
|
|
PORTDOCS= CREDITS LICENSE NOTICE README
|
|
|
|
CONFIGURE_ARGS+=--with-pkgconfigdir=${PREFIX}/libdata/pkgconfig
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|