2013-01-21 20:47:03 +00:00
|
|
|
# Created by: Yen-Ming Lee <leeym@FreeBSD.org>
|
2006-12-19 07:28:37 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= gflags
|
2013-01-30 20:32:28 +00:00
|
|
|
PORTVERSION= 2.0
|
2006-12-19 07:28:37 +00:00
|
|
|
CATEGORIES= devel
|
2011-10-07 03:17:28 +00:00
|
|
|
MASTER_SITES= GOOGLE_CODE
|
2006-12-19 07:28:37 +00:00
|
|
|
|
2013-01-30 20:32:28 +00:00
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
2006-12-19 07:28:37 +00:00
|
|
|
COMMENT= Commandline flags module for C++
|
|
|
|
|
2013-01-30 20:32:28 +00:00
|
|
|
LICENSE= BSD
|
|
|
|
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
|
|
|
|
GNU_CONFIGURE= yes
|
2010-12-04 07:34:27 +00:00
|
|
|
USE_AUTOTOOLS= libtool
|
2013-03-19 13:04:30 +00:00
|
|
|
USES= pathfix
|
2006-12-19 07:28:37 +00:00
|
|
|
USE_LDCONFIG= yes
|
|
|
|
|
2011-04-04 22:36:39 +00:00
|
|
|
PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README README_windows.txt \
|
2011-10-07 03:17:28 +00:00
|
|
|
designstyle.css gflags.html
|
2006-12-19 07:28:37 +00:00
|
|
|
|
2013-01-21 20:47:03 +00:00
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
|
2006-12-19 07:28:37 +00:00
|
|
|
post-patch:
|
2013-01-30 20:32:28 +00:00
|
|
|
@${REINPLACE_CMD} \
|
|
|
|
-e 's|^\(docdir = \).*|\1${DOCSDIR}|' \
|
|
|
|
-e 's|^\(pkgconfigdir = \).*|\1$$(DESTDIR)$$(prefix)/libdata/pkgconfig|' \
|
|
|
|
${WRKSRC}/Makefile.in
|
|
|
|
.if empty(PORT_OPTIONS:MDOCS)
|
|
|
|
@${REINPLACE_CMD} -e '/^install-data-am: / s| install-dist_docDATA||' ${WRKSRC}/Makefile.in
|
2006-12-19 07:28:37 +00:00
|
|
|
.endif
|
|
|
|
|
2007-04-19 13:19:36 +00:00
|
|
|
.include <bsd.port.mk>
|