mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
44eaadcb75
Where possible, correct a few instances where PORTDOCS was being used to flag stuff in EXAMPLESDIR. For some ports, mostly those owned by ruby@, PORTDOCS is applied to pretty much everything whether it's documentation or example.
36 lines
948 B
Makefile
36 lines
948 B
Makefile
# Created by: Vladimir Gorelov <virtual.lark@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= art
|
|
PORTVERSION= 0.9.01
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://skylark.tsu.ru/art/0.9/download/src/ \
|
|
SF/art-project/src/
|
|
|
|
MAINTAINER= virtual.lark@gmail.com
|
|
COMMENT= Resource tracing, debugging, and profiling tool
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= libxml++-2.6.so:${PORTSDIR}/textproc/libxml++26
|
|
|
|
USES= gmake pkgconfig
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/artlibgen/src/artlibgen ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/artrepgen/artrepgen ${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for docs in posix-gcc-mt-file-lint.xml posix-gcc-mt-netw-lint.xml \
|
|
posix-gcc-mt-file-special.xml
|
|
@${INSTALL_DATA} ${WRKSRC}/artlibgen/templates/${docs} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.if defined(MAINTAINER_MODE)
|
|
full-regression-test: build
|
|
cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} test
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|