mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
43 lines
946 B
Makefile
43 lines
946 B
Makefile
# Created by: Martin Matuska <mm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libcfg
|
|
PORTVERSION= 0.6.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://platon.sk/upload/_projects/00003/
|
|
DISTNAME= ${PORTNAME}+-${DISTVERSION}
|
|
|
|
MAINTAINER= rodrigo@FreeBSD.org
|
|
COMMENT= Library for command line and configuration file parsing
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= gmake
|
|
USE_AUTOTOOLS= autoconf
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
INSTALL_TARGET= install-strip install-man
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= EXAMPLES DOCS
|
|
OPTIONS_SUB= yes
|
|
|
|
CFLAGS_amd64= -fPIC
|
|
CFLAGS_ia64= -fPIC
|
|
|
|
post-install:
|
|
@${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} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
for FILE in ${WRKSRC}/doc/html/*; do \
|
|
${INSTALL_DATA} $${FILE} ${STAGEDIR}${DOCSDIR}/html; \
|
|
done
|
|
|
|
.include <bsd.port.mk>
|