1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

Install example files when EXAMPLES is defined

Replace USE_GMAKE with USES=gmake
Add STAGEDIR Support
Convert to new LIB_DEPENDS syntax
Define LICENSE
This commit is contained in:
Steven Kreuzer 2014-01-13 17:15:51 +00:00
parent 879968af2d
commit 45b3ee8d1a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=339611

View File

@ -10,10 +10,12 @@ MASTER_SITES= http://mongrel2.org/static/downloads/
MAINTAINER= vg@FreeBSD.org
COMMENT= Is an application, language, and network arch
LIB_DEPENDS= zmq.1:${PORTSDIR}/net/libzmq2 \
sqlite3.8:${PORTSDIR}/databases/sqlite3
LICENSE= BSD3CLAUSE
USE_GMAKE= yes
LIB_DEPENDS= libzmq.so:${PORTSDIR}/net/libzmq2 \
libsqlite3.so:${PORTSDIR}/databases/sqlite3
USES= gmake
USE_BZIP2= yes
MAKE_FLAGS= freebsd
EXAMPLES_LIST= bbs \
@ -29,7 +31,6 @@ EXAMPLES_LIST= bbs \
OPTIONS_DEFINE= EXAMPLES
NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MEXAMPLES}
@ -42,10 +43,10 @@ post-patch:
@${REINPLACE_CMD} -e 's#/usr/local#${LOCALBASE}#g' ${WRKSRC}/Makefile
post-install:
.if defined(WITH_EXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
.if ${PORT_OPTIONS:MEXAMPLES}
@${MKDIR} ${STAGEDIR}/${EXAMPLESDIR}
.for examples in ${EXAMPLES_LIST}
@cd ${WRKSRC}/examples && ${COPYTREE_SHARE} ${examples} ${EXAMPLESDIR}
@cd ${WRKSRC}/examples && ${COPYTREE_SHARE} ${examples} ${STAGEDIR}/${EXAMPLESDIR}
.endfor
.endif