diff options
author | kris <kris@FreeBSD.org> | 2005-06-12 07:40:16 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-06-12 07:40:16 +0800 |
commit | 0b7b9199f1f503aacbf212053d58cbb600ced5fc (patch) | |
tree | 61a067cda21114c5d83b654cabdb7d84b1c167ec /x11/electricsheep | |
parent | 6796e3cd1699b4b8545faa42f16abff94f0aebd2 (diff) | |
download | freebsd-ports-gnome-0b7b9199f1f503aacbf212053d58cbb600ced5fc.tar.gz freebsd-ports-gnome-0b7b9199f1f503aacbf212053d58cbb600ced5fc.tar.zst freebsd-ports-gnome-0b7b9199f1f503aacbf212053d58cbb600ced5fc.zip |
BROKEN: Does not compile on 4.x/Incomplete pkg-plist on 5.x
Diffstat (limited to 'x11/electricsheep')
-rw-r--r-- | x11/electricsheep/Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/x11/electricsheep/Makefile b/x11/electricsheep/Makefile index 0bc92be2c902..511e89d3dade 100644 --- a/x11/electricsheep/Makefile +++ b/x11/electricsheep/Makefile @@ -25,6 +25,8 @@ RUN_DEPENDS= xloadimage:${PORTSDIR}/x11/xloadimage \ RUN_DEPENDS+= xscreensaver:${PORTSDIR}/x11/xscreensaver .endif +BROKEN= "Does not compile" + WRKSRC= ${WRKDIR}/${PORTNAME}-2.6.1 USE_X_PREFIX= yes @@ -41,6 +43,14 @@ CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} ${PTHREAD_CFLAGS} -I${X11BASE}/include -I${ LIBTOOLFILES= configure mpeg2dec/configure flam3/configure +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on FreeBSD 4.x" +.else +BROKEN= "Incomplete pkg-plist" +.endif + pre-everything:: .if !defined(WITH_XSCREENSAVER) @${ECHO_MSG} "elecricsheep has the following tunable option(s):" @@ -94,4 +104,5 @@ do-install: post-install: @${PREFIX}/bin/esheep-uniqueid > ${DATADIR}/electricsheep-uniqueid -.include <bsd.port.mk> +.include <bsd.port.post.mk> + |