1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

Support staging

This commit is contained in:
Emanuel Haupt 2014-02-26 09:10:36 +00:00
parent 0577482d2b
commit 7a00dab228
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=346158

View File

@ -18,31 +18,26 @@ MAKE_ENV+= DEFS="-I${LOCALBASE}/include/eps ${CFLAGS}"
SUB_FILES= pkg-message
EXAMPLE_FILES= addr.1 addr.2 addr.3 addr.4 email.1 email.2 virus.email
INSTALL_FILES= address b64decode b64encode body fold full headers qpdecode rewrite
INSTALL_FILES= address b64decode b64encode body fold full headers qpdecode \
rewrite
OPTIONS_DEFINE= DOCS EXAMPLES
NO_STAGE= yes
post-patch:
@${REINPLACE_CMD} -e 's|^CC =|CC \?=|' \
-e 's|^DEFS =|DEFS \?=|' \
-e 's|^LIBS = -leps|LIBS = ${LOCALBASE}/lib/libeps.a|' \
${WRKSRC}/Makefile
-e 's|^DEFS =|DEFS \?=|' \
-e 's|^LIBS = -leps|LIBS = ${LOCALBASE}/lib/libeps.a|' \
${WRKSRC}/Makefile
do-install:
.for f in ${INSTALL_FILES}
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/bin/eps-${f}
${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin/eps-${f}
.endfor
${MKDIR} ${EXAMPLESDIR}
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
.for f in ${EXAMPLE_FILES}
${INSTALL_DATA} ${WRKSRC}/content/${f} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/content/${f} ${STAGEDIR}${EXAMPLESDIR}
.endfor
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR}
.endif
post-install:
@${CAT} ${PKGMESSAGE}
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>