diff options
author | gahr <gahr@FreeBSD.org> | 2014-07-21 08:01:02 +0000 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2014-07-21 08:01:02 +0000 |
commit | 85e7e70cf9047dfafb1948b8247879750c9a9ae5 (patch) | |
tree | 02cd08e4523c3816fbc8ebabc400e8c14079c723 | |
parent | 2b83a558416aa44a4991a0abe76b1b566309dc40 (diff) | |
download | FreeBSD-ports-85e7e70cf9047dfafb1948b8247879750c9a9ae5.zip FreeBSD-ports-85e7e70cf9047dfafb1948b8247879750c9a9ae5.tar.gz |
- Unbreak on powerpc, it builds fine
- While at it, make a few cosmetics changes
Reported by: danfe
-rw-r--r-- | textproc/scew/Makefile | 11 | ||||
-rw-r--r-- | textproc/scew/pkg-descr | 7 |
2 files changed, 9 insertions, 9 deletions
diff --git a/textproc/scew/Makefile b/textproc/scew/Makefile index f96a816..106b9dd 100644 --- a/textproc/scew/Makefile +++ b/textproc/scew/Makefile @@ -14,25 +14,26 @@ LICENSE= LGPL21 LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2 -GNU_CONFIGURE= yes USES= gmake libtool pathfix pkgconfig +GNU_CONFIGURE= yes USE_LDCONFIG= yes + CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib SCEW_EXAMPLES= print stream write -BROKEN_powerpc= Does not compile on powerpc - post-install: .for ex in ${SCEW_EXAMPLES} - ${INSTALL_SCRIPT} ${WRKSRC}/examples/${PORTNAME}_${ex}/${PORTNAME}_${ex} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} \ + ${WRKSRC}/examples/${PORTNAME}_${ex}/${PORTNAME}_${ex} \ + ${STAGEDIR}${PREFIX}/bin .endfor .ifdef MAINTAINER_MODE LIB_DEPENDS+= libcheck.so:${PORTSDIR}/devel/libcheck regression-test: build - cd ${WRKSRC}/tests && ${MAKE_CMD} check + ${MAKE_CMD} -C ${WRKSRC}/tests check .endif .include <bsd.port.mk> diff --git a/textproc/scew/pkg-descr b/textproc/scew/pkg-descr index 88ecb24..0940e616 100644 --- a/textproc/scew/pkg-descr +++ b/textproc/scew/pkg-descr @@ -1,6 +1,5 @@ -The aim of SCEW is to provide an easy interface around the XML Expat -parser. -SCEW also incorporates functions to create and handle XML trees. That -is, add and delete nodes, change attribute names and values... +The aim of SCEW is to provide an easy interface around the Expat XML parser. +SCEW also incorporates functions to create and handle XML trees. That is, add +and delete nodes, change attribute names and values, etc. WWW: http://www.nongnu.org/scew/ |