diff options
author | adamw <adamw@FreeBSD.org> | 2015-03-14 01:29:58 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2015-03-14 01:29:58 +0800 |
commit | 3285716aaeafc0b799b7d0f09455fb838f7423eb (patch) | |
tree | 31d423e420103f6111ac7dcc29da77612438b7a3 /net-im | |
parent | 0e44743df6c6b7c3f4bc9ebe5b47c9868ff2ca6d (diff) | |
download | freebsd-ports-gnome-3285716aaeafc0b799b7d0f09455fb838f7423eb.tar.gz freebsd-ports-gnome-3285716aaeafc0b799b7d0f09455fb838f7423eb.tar.zst freebsd-ports-gnome-3285716aaeafc0b799b7d0f09455fb838f7423eb.zip |
Clean up the rest of the perl@ Makefiles a bit.
- Remove dependencies on modules distributed as part of perl core
- Remove references to FreeBSD < 8 and perl < 5.16
- Ensure that DOCS and EXAMPLES options exist for ports installing
PORTDOCS or PORTEXAMPLES
- Reduce unnecessary inclusions of bsd.port.options.mk by using
OPTIONS helpers and the like
- Fix some cases where dependencies were only assigned to BUILD_DEPENDS
- Fix a few of the cases where dependencies were only assigned to RUN_DEPENDS.
This one happens in many, many ports. I only applied it in cases where
it interfered with 'make test' but it should maybe be done more generally.
- Mute ${MKDIR} in installation
- Parethesize compound commands
- In www/p5-URI-Fetch, remove the ZLIB option that wasn't used
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/p5-AnyEvent-XMPP/Makefile | 8 | ||||
-rw-r--r-- | net-im/p5-Net-XMPP2/Makefile | 11 |
2 files changed, 2 insertions, 17 deletions
diff --git a/net-im/p5-AnyEvent-XMPP/Makefile b/net-im/p5-AnyEvent-XMPP/Makefile index 3b6d043f003f..90859f0edc74 100644 --- a/net-im/p5-AnyEvent-XMPP/Makefile +++ b/net-im/p5-AnyEvent-XMPP/Makefile @@ -26,10 +26,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -.include <bsd.port.pre.mk> -# One of it's dependency is p5-GSSAPI which is marked broken for 7.X -.if ${OSVERSION} < 800000 -BROKEN= Does not work on FreeBSD 7.x -.endif - -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/net-im/p5-Net-XMPP2/Makefile b/net-im/p5-Net-XMPP2/Makefile index 1f9b916f396c..f00a5fecfc7e 100644 --- a/net-im/p5-Net-XMPP2/Makefile +++ b/net-im/p5-Net-XMPP2/Makefile @@ -22,16 +22,7 @@ BUILD_DEPENDS= p5-AnyEvent>=0:${PORTSDIR}/devel/p5-AnyEvent \ p5-Object-Event>=0:${PORTSDIR}/devel/p5-Object-Event \ p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser \ p5-XML-Writer>=0:${PORTSDIR}/textproc/p5-XML-Writer -RUN_DEPENDS:= p5-AnyEvent>=0:${PORTSDIR}/devel/p5-AnyEvent \ - p5-Authen-SASL>=0:${PORTSDIR}/security/p5-Authen-SASL \ - p5-BS-Event>=0:${PORTSDIR}/devel/p5-BS-Event \ - p5-Digest-SHA1>=0:${PORTSDIR}/security/p5-Digest-SHA1 \ - p5-Net-DNS>=0:${PORTSDIR}/dns/p5-Net-DNS \ - p5-Net-LibIDN>=0:${PORTSDIR}/dns/p5-Net-LibIDN \ - p5-Net-SSLeay>=0:${PORTSDIR}/security/p5-Net-SSLeay \ - p5-Object-Event>=0:${PORTSDIR}/devel/p5-Object-Event \ - p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser \ - p5-XML-Writer>=0:${PORTSDIR}/textproc/p5-XML-Writer +RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure |