diff options
author | Oliver Lehmann <oliver@FreeBSD.org> | 2014-03-23 09:45:39 +0000 |
---|---|---|
committer | Oliver Lehmann <oliver@FreeBSD.org> | 2014-03-23 09:45:39 +0000 |
commit | 4619451ba9f809820a299f8fa9d5b2dcd3fb83b4 (patch) | |
tree | e04b54636873016f1f09035447db08d52a52510d /net | |
parent | 02e7987e4c97b9be2345910776a90a6094c121d0 (diff) |
switch from GCC to Clang
bump PORTREVISION
Notes
Notes:
svn path=/head/; revision=348846
Diffstat (limited to 'net')
-rw-r--r-- | net/cyphesis/Makefile | 19 | ||||
-rw-r--r-- | net/skstream/Makefile | 10 |
2 files changed, 14 insertions, 15 deletions
diff --git a/net/cyphesis/Makefile b/net/cyphesis/Makefile index 13aabe11078b..c66c4bd6de18 100644 --- a/net/cyphesis/Makefile +++ b/net/cyphesis/Makefile @@ -3,7 +3,7 @@ PORTNAME= cyphesis PORTVERSION= 0.6.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= SF/worldforge/${PORTNAME}%20%28server%29/${PORTVERSION} @@ -22,19 +22,16 @@ CONFIGURE_ARGS= --with-python=${LOCALBASE} GNU_CONFIGURE= yes USE_BZIP2= yes -USES= gmake pathfix pkgconfig +USES= gmake pathfix pkgconfig compiler:c++11-lib USE_LDCONFIG= yes USE_PGSQL= yes USE_PYTHON= 2 -USE_GCC= yes CFLAGS+= -I${LOCALBASE}/include MAN1= cyclient.1 cycmd.1 cyphesis.1 cyphesis-tools.1 cyaddrules.1 \ cyconvertrules.1 cydumprules.1 cyloadrules.1 cypasswd.1 -NO_STAGE= yes - OPTIONS_DEFINE= DOCS .include <bsd.port.options.mk> @@ -59,13 +56,13 @@ post-patch: post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - @${MKDIR} ${DOCSDIR}/conf -.for docfile in README COPYING AUTHORS THANKS NEWS ChangeLog TODO FIXME - @${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR}/conf +.for file in README COPYING AUTHORS THANKS NEWS ChangeLog TODO FIXME + @${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} .endfor -.for docfile in acorn.xml basic.xml cyphesis.vconf mason.xml werewolf.xml - @${INSTALL_DATA} ${WRKSRC}/data/${docfile} ${DOCSDIR}/conf +.for file in acorn.xml basic.xml cyphesis.vconf mason.xml werewolf.xml + @${INSTALL_DATA} ${WRKSRC}/data/${file} ${STAGEDIR}${DOCSDIR}/conf .endfor .endif diff --git a/net/skstream/Makefile b/net/skstream/Makefile index 2fd9af176680..c1cede5e041f 100644 --- a/net/skstream/Makefile +++ b/net/skstream/Makefile @@ -3,6 +3,7 @@ PORTNAME= skstream PORTVERSION= 0.3.9 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= SF/worldforge/${PORTNAME}%20%28network%20lib%29/${PORTVERSION} @@ -10,10 +11,9 @@ MAINTAINER= oliver@FreeBSD.org COMMENT= An iostream based C++ socket library USE_GMAKE= yes -USES= pathfix pkgconfig +USES= pathfix pkgconfig compiler:c++11-lib GNU_CONFIGURE= yes USE_LDCONFIG= yes -USE_GCC= yes OPTIONS_DEFINE= DOCS @@ -23,9 +23,11 @@ post-patch: @${REINPLACE_CMD} -e 's| install-docdataDATA | |g' ${WRKSRC}/Makefile.in post-install: +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} -.for docfile in README COPYING AUTHORS NEWS README.FreeSockets - @${INSTALL_DATA} ${WRKSRC}/${docfile} ${STAGEDIR}${DOCSDIR} +.for file in README COPYING AUTHORS NEWS README.FreeSockets + @${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} .endfor +.endif .include <bsd.port.mk> |