diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2003-12-10 04:04:08 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2003-12-10 04:04:08 +0000 |
commit | d282b1fa3467558fa12ca01f6f9c8f2f6ca25f92 (patch) | |
tree | e5cdc50bf7baf672a25f023f25f408271a9356d8 /net/ulxmlrpcpp/Makefile | |
parent | 039bd9d66cdf70db91fd6e36aeca8e03ed190422 (diff) |
Notes
Diffstat (limited to 'net/ulxmlrpcpp/Makefile')
-rw-r--r-- | net/ulxmlrpcpp/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/net/ulxmlrpcpp/Makefile b/net/ulxmlrpcpp/Makefile new file mode 100644 index 000000000000..d8ebb8244cad --- /dev/null +++ b/net/ulxmlrpcpp/Makefile @@ -0,0 +1,33 @@ +# ex:ts=8 +# Ports collection makefile for: ulxmlrpcpp +# Date created: Dec 10, 2003 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= ulxmlrpcpp +PORTVERSION= 1.2.4.b5 +CATEGORIES= net devel +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +DISTNAME= ${PORTNAME}-${PORTVERSION:R}-${PORTVERSION:E:S/b/beta/} + +MAINTAINER= ports@FreeBSD.org +COMMENT= A ultra lightweight xml-rpc library written in C++ + +LIB_DEPENDS= expat.4:${PORTSDIR}/textproc/expat2 \ + iconv.3:${PORTSDIR}/converters/libiconv + +USE_BZIP2= yes +USE_REINPLACE= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --disable-doxygen --disable-latex-docs +INSTALLS_SHLIB= yes + +post-patch: + @${REINPLACE_CMD} -e "s|-pthread|${PTHREAD_LIBS}|g" ${WRKSRC}/configure + +.include <bsd.port.mk> |