diff options
author | glarkin <glarkin@FreeBSD.org> | 2009-04-25 09:29:28 +0800 |
---|---|---|
committer | glarkin <glarkin@FreeBSD.org> | 2009-04-25 09:29:28 +0800 |
commit | b63a119df055645b6ac96cac7f2528dbddcbc718 (patch) | |
tree | 426ec5def9170fbd3775460c606dcc37a2ed9934 /net | |
parent | 1c5d84285e7182b3282c9c9c6aeb3cb7cf956c41 (diff) | |
download | freebsd-ports-graphics-b63a119df055645b6ac96cac7f2528dbddcbc718.tar.gz freebsd-ports-graphics-b63a119df055645b6ac96cac7f2528dbddcbc718.tar.zst freebsd-ports-graphics-b63a119df055645b6ac96cac7f2528dbddcbc718.zip |
- Unbreak for amd64/6.X by adding GCC 4.2+ as build dep
- Use correct OSVERSION value for GCC version detection
- Take maintainership
- Minor stylistic cleanups
- Bump PORTREVISION
Reported by: pointyhat
Diffstat (limited to 'net')
-rw-r--r-- | net/easysoap/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/net/easysoap/Makefile b/net/easysoap/Makefile index ddad2eb0219..5566e5e8bd7 100644 --- a/net/easysoap/Makefile +++ b/net/easysoap/Makefile @@ -7,13 +7,12 @@ PORTNAME= easysoap PORTVERSION= 0.8.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} +MASTER_SITES= SF DISTNAME= EasySoap++-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= glarkin@FreeBSD.org COMMENT= C++ SOAP Library based on expat LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2 @@ -26,8 +25,8 @@ USE_LDCONFIG= yes .include <bsd.port.pre.mk> -.if ${OSVERSION} < 700000 && ${ARCH} == "amd64" -BROKEN= does not compile on FreeBSD/amd64 6.X +.if ${OSVERSION} < 700042 && ${ARCH} == "amd64" +USE_GCC= 4.2+ .endif post-patch: |