diff options
Diffstat (limited to 'devel/commoncpp/Makefile')
-rw-r--r-- | devel/commoncpp/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/devel/commoncpp/Makefile b/devel/commoncpp/Makefile new file mode 100644 index 000000000000..ec87d1c9396e --- /dev/null +++ b/devel/commoncpp/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: CommonC++ +# Date created: 25 July 2000 +# Whom: David Sugar <dyfet@gnu.org> +# +# $FreeBSD$ +# + +PORTNAME= CommonC++ +PORTVERSION= 1.1.0 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= cplusplus + +MAINTAINER= dyfet@gnu.org + +USE_GMAKE= yes +USE_LIBTOOL= yes +USE_AUTOCONF= yes +INSTALLS_SHLIB= yes +AUTOCONF= autoconf && ${PERL} -pi -e 's|-lpthread|-pthread|g ; \ + s|l\$$ost_cv_thread_library|\$$ost_cv_thread_library|g' \ + ${WRKSRC}/configure + +post-extract: + @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ + 's|-release \$$\(LT_RELEASE\)||g' + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/commoncpp + ${INSTALL_MAN} ${WRKSRC}/doc/*.html ${PREFIX}/share/doc/commoncpp +.endif + +.include <bsd.port.mk> |