mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
eda8d08ae8
- Strip libraries
39 lines
929 B
Makefile
39 lines
929 B
Makefile
# Created by: Robert Schlotterbeck <robert@rs.tarrant.tx.us>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xxl
|
|
PORTVERSION= 1.0.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://launchpadlibrarian.net/39195019/ \
|
|
http://www.zork.org/software/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= C/C++ library for exception handling and asset management
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
USES= libtool
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
PLIST_FILES= include/xxl.h lib/libxxl.a lib/libxxl.so \
|
|
lib/libxxl.so.1 lib/libxxl.so.1.1.0
|
|
PORTDOCS= xxl.html xxl.pdf
|
|
|
|
OPTIONS_DEFINE= THREADS DOCS
|
|
OPTIONS_DEFAULT=THREADS
|
|
|
|
THREADS_CONFIGURE_WITH= threads
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libxxl.so
|
|
|
|
regression-test test: build
|
|
@(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} \
|
|
${MAKEFILE} ${MAKE_ARGS} check)
|
|
|
|
.include <bsd.port.mk>
|