diff options
author | lioux <lioux@FreeBSD.org> | 2002-04-21 07:06:39 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2002-04-21 07:06:39 +0800 |
commit | 474042e2d655fdc66ae5df83c0bb2f99c0151bc2 (patch) | |
tree | cb11eba3629d489aaec84bd032a6792a1f176506 /graphics | |
parent | e86e1757eb845cfb868841091877e18ddbb44422 (diff) | |
download | freebsd-ports-gnome-474042e2d655fdc66ae5df83c0bb2f99c0151bc2.tar.gz freebsd-ports-gnome-474042e2d655fdc66ae5df83c0bb2f99c0151bc2.tar.zst freebsd-ports-gnome-474042e2d655fdc66ae5df83c0bb2f99c0151bc2.zip |
o Change port default. Port does not like cluster code disabled per
default. Invert option by adding WITHOUT_CLUSTER.
o Bump PORTREVISION
Submitted by: maintainer
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/dvdrip/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/graphics/dvdrip/Makefile b/graphics/dvdrip/Makefile index 4f2854885ab7..d9bee3ccd521 100644 --- a/graphics/dvdrip/Makefile +++ b/graphics/dvdrip/Makefile @@ -7,13 +7,14 @@ PORTNAME= dvdrip PORTVERSION= 0.39.05 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://www.exit1.org/dvdrip/dist/ DISTNAME= Video-DVDRip-${PORTVERSION:S/.05$//g}_05 MAINTAINER= michaelnottebrock@gmx.net -.if defined(WITH_CLUSTER) +.if !defined(WITHOUT_CLUSTER) RUN_DEPENDS+= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable \ ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Event.pm:${PORTSDIR}/devel/p5-Event \ ${LOCALBASE}/sbin/fping:${PORTSDIR}/net/fping \ @@ -37,10 +38,13 @@ MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Video::DVDRip.3 pre-everything:: -.if defined(WITH_CLUSTER) +.if !defined(WITHOUT_CLUSTER) @${ECHO_MSG} - @${ECHO_MSG} "Cluster daemon disabled. Enable with WITHOUT_CLUSTER" + @${ECHO_MSG} "You can disable the cluster daemon and it's" + @${ECHO_MSG} "dependencies by defining WITHOUT_CLUSTER." @${ECHO_MSG} + @${ECHO_MSG} "Warning: dvdrip does not like this and will" + @${ECHO_MSG} "throw cryptic error-messages. Use with caution." .endif .if !defined(WITH_XINE) @${ECHO_MSG} |