mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
# New ports collection makefile for: resume-extensions
|
|
# Date created: August 03 2004
|
|
# Whom: Aaron Straup Cope
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= resume-extensions
|
|
PORTVERSION= 0.5
|
|
PORTREVISION= 2
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://aaronland.info/xsl/xmlresume/
|
|
DISTNAME= xml${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Extends the XML Resume library
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/share/xsl/resume:${PORTSDIR}/textproc/resume \
|
|
${LOCALBASE}/share/xsl/string/print-n-times.xsl:${PORTSDIR}/textproc/print-n-times \
|
|
${LOCALBASE}/share/xsl/xhtml/add-css-links.xsl:${PORTSDIR}/textproc/add-css-links
|
|
|
|
NO_BUILD= yes
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|/usr/local/share|${LOCALBASE}/share|' \
|
|
${WRKSRC}/lib/extrefs.xsl
|
|
${REINPLACE_CMD} -e 's|/usr/local/share|${LOCALBASE}/share|' \
|
|
${WRKSRC}/format/html.xsl
|
|
${FIND} ${WRKSRC} -name '*.bak' -delete
|
|
|
|
do-install:
|
|
@${ECHO} "Installing in ${PREFIX}/share/xsl/${PORTNAME}"
|
|
@${MKDIR} ${PREFIX}/share/xsl/${PORTNAME}
|
|
@${CP} -R ${WRKSRC}/* ${PREFIX}/share/xsl/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|