diff options
author | bapt <bapt@FreeBSD.org> | 2014-02-24 23:56:27 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-02-24 23:56:27 +0800 |
commit | 391f0d8a1c22c4ce857c2760e69ba59a235b94bc (patch) | |
tree | 35b30a12a739ee61bd5c19734b292b14bbad2b6e /devel | |
parent | 70c604d15e791c9b392b1928ce865cba929af9e4 (diff) | |
download | freebsd-ports-graphics-391f0d8a1c22c4ce857c2760e69ba59a235b94bc.tar.gz freebsd-ports-graphics-391f0d8a1c22c4ce857c2760e69ba59a235b94bc.tar.zst freebsd-ports-graphics-391f0d8a1c22c4ce857c2760e69ba59a235b94bc.zip |
Support stage
Diffstat (limited to 'devel')
-rw-r--r-- | devel/libcfg/Makefile | 44 | ||||
-rw-r--r-- | devel/libcfg/pkg-plist | 7 |
2 files changed, 18 insertions, 33 deletions
diff --git a/devel/libcfg/Makefile b/devel/libcfg/Makefile index bd0cf4445a1..5003285fe02 100644 --- a/devel/libcfg/Makefile +++ b/devel/libcfg/Makefile @@ -12,53 +12,31 @@ MAINTAINER= rodrigo@FreeBSD.org COMMENT= Library for command line and configuration file parsing LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/COPYING +USES= gmake USE_AUTOTOOLS= autoconf GNU_CONFIGURE= yes -USE_GMAKE= yes USE_LDCONFIG= yes -INSTALL_TARGET= install-strip - -.if !defined(NO_INSTALL_MANPAGES) -MAN3= cfg_add_property.3 cfg_context.3 cfg_option.3 cfg_parse.3 \ - cfg_print_error.3 cfg_set_context_flag.3 libcfg+.3 -MANCOMPRESSED= yes -INSTALL_TARGET+= install-man -.endif +INSTALL_TARGET= install-strip install-man PORTDOCS= * OPTIONS_DEFINE= EXAMPLES DOCS +OPTIONS_SUB= yes -NO_STAGE= yes -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MEXAMPLES} -PLIST_SUB+= EXAMPLES="" -.else -PLIST_SUB+= EXAMPLES="@comment " -.endif - -.if ${ARCH} == "amd64" || ${ARCH} == "ia64" -CFLAGS+= -fPIC -.endif +CFLAGS_amd64= -fPIC +CFLAGS_ia64= -fPIC post-install: -.if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/doc/examples/example.* ${EXAMPLESDIR} -.endif -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/examples/example.* ${STAGEDIR}${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR}/html .for FILE in AUTHORS README TODO - @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}${DOCSDIR} .endfor - @${MKDIR} ${DOCSDIR}/html - @for FILE in ${WRKSRC}/doc/html/*; do \ - ${INSTALL_DATA} $${FILE} ${DOCSDIR}/html; \ + for FILE in ${WRKSRC}/doc/html/*; do \ + ${INSTALL_DATA} $${FILE} ${STAGEDIR}${DOCSDIR}/html; \ done -.endif .include <bsd.port.mk> diff --git a/devel/libcfg/pkg-plist b/devel/libcfg/pkg-plist index 009a7130780..715443c0a78 100644 --- a/devel/libcfg/pkg-plist +++ b/devel/libcfg/pkg-plist @@ -5,6 +5,13 @@ include/cfg.h include/cfg+.h include/platon/cfg.h include/platon/cfg+.h +man/man3/cfg_add_property.3.gz +man/man3/cfg_context.3.gz +man/man3/cfg_option.3.gz +man/man3/cfg_parse.3.gz +man/man3/cfg_print_error.3.gz +man/man3/cfg_set_context_flag.3.gz +man/man3/libcfg+.3.gz @dirrm include/platon %%EXAMPLES%%%%EXAMPLESDIR%%/example.c %%EXAMPLES%%%%EXAMPLESDIR%%/example.cfg |