Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Feb 2014 15:56:27 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r345872 - head/devel/libcfg
Message-ID:  <201402241556.s1OFuR0f090784@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Mon Feb 24 15:56:27 2014
New Revision: 345872
URL: http://svnweb.freebsd.org/changeset/ports/345872
QAT: https://qat.redports.org/buildarchive/r345872/

Log:
  Support stage

Modified:
  head/devel/libcfg/Makefile
  head/devel/libcfg/pkg-plist

Modified: head/devel/libcfg/Makefile
==============================================================================
--- head/devel/libcfg/Makefile	Mon Feb 24 15:51:12 2014	(r345871)
+++ head/devel/libcfg/Makefile	Mon Feb 24 15:56:27 2014	(r345872)
@@ -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>

Modified: head/devel/libcfg/pkg-plist
==============================================================================
--- head/devel/libcfg/pkg-plist	Mon Feb 24 15:51:12 2014	(r345871)
+++ head/devel/libcfg/pkg-plist	Mon Feb 24 15:56:27 2014	(r345872)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402241556.s1OFuR0f090784>