forked from Lainports/freebsd-ports
While I'm here, also trim the headers on a couple of ports and remove a reference to the Dragonlace mirror which is down indefinitely. Approved by: bapt (mentor)
63 lines
2 KiB
Makefile
63 lines
2 KiB
Makefile
# Created by: John Marino <marino@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xmlada
|
|
PORTVERSION= 4.4.0.0
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://downloads.dragonlace.net/src/
|
|
|
|
MAINTAINER= marino@FreeBSD.org
|
|
COMMENT= Adacore XML suite for the Ada language
|
|
|
|
LICENSE= GPLv2
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
USE_BZIP2= yes
|
|
USES= ada
|
|
|
|
DESTINY= ${WRKDIR}/destino
|
|
MAKE_ENV+= DESTDIR=${DESTINY}
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
BUILD_DEPENDS+= sphinx-build:${PORTSDIR}/textproc/py-sphinx
|
|
.endif
|
|
|
|
# Link options were added for sax, dom, schema, and input_sources libraries
|
|
# "-R" option disables all rpaths except adalib and compiler libs. This is
|
|
# done because by default the rpaths will points at the WRKOBJDIR because
|
|
# it doesn't support the concept of DESTDIR.
|
|
# "-Wl,-R" adds a second rpath string.
|
|
# -Wl,-rpath is a better choice, but synonym -Wl,-R works on all BSD and SunOS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s,@ADDITIONAL_RPATH@,${LOCALBASE}/lib," \
|
|
${WRKSRC}/sax/sax.gpr \
|
|
${WRKSRC}/dom/dom.gpr \
|
|
${WRKSRC}/schema/schema.gpr \
|
|
${WRKSRC}/input_sources/input_sources.gpr
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${REINPLACE_CMD} -e 's/^all: \(.*\)/all: \1 docs/g' ${WRKSRC}/Makefile.in
|
|
.endif
|
|
|
|
post-install:
|
|
${RM} -rf ${DESTINY}${PREFIX}/share/doc/xmlada/_sources
|
|
${CP} -pR ${DESTINY}${PREFIX}/ ${PREFIX}/
|
|
@cd ${DESTINY}${PREFIX}; ${FIND} * \( -type f -or -type l \) | \
|
|
${SORT} > ${WRKDIR}/PLIST.all
|
|
@cd ${DESTINY}${PREFIX}; ${FIND} * -type d | ${AWK} '/\//' | ${SORT} -r | \
|
|
${SED} -e '/lib\/gnat$$/d' -e '/share\/doc$$/d' -e '/share\/gps/d' \
|
|
-e 's/^/@dirrm /g' >> ${WRKDIR}/PLIST.all
|
|
@echo "@unexec rmdir %D/lib/gnat 2>/dev/null || true" >> ${WRKDIR}/PLIST.all
|
|
@echo "@unexec rmdir %D/share/gps/plug-ins 2>/dev/null || true" >> ${WRKDIR}/PLIST.all
|
|
@echo "@unexec rmdir %D/share/gps 2>/dev/null || true" >> ${WRKDIR}/PLIST.all
|
|
@echo "@unexec rmdir %D/share/doc 2>/dev/null || true" >> ${WRKDIR}/PLIST.all
|
|
@${CAT} ${WRKDIR}/PLIST.all >> ${TMPPLIST}
|
|
|
|
.include <bsd.port.mk>
|