diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2006-05-24 00:30:36 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2006-05-24 00:30:36 +0800 |
commit | 20d51a1821abdb9eec646e408f194a0cba4cba81 (patch) | |
tree | b6a7e0ec70c032dbdb3834b40139f3bcd5b008bf /audio/playgsf | |
parent | 35a08a1e7c47ae74e8f385adbfd1f4acfb39d211 (diff) | |
download | freebsd-ports-graphics-20d51a1821abdb9eec646e408f194a0cba4cba81.tar.gz freebsd-ports-graphics-20d51a1821abdb9eec646e408f194a0cba4cba81.tar.zst freebsd-ports-graphics-20d51a1821abdb9eec646e408f194a0cba4cba81.zip |
- Add an additional mirror
- This port does not configure on FreeBSD 7.x, mark it BROKEN for
${OSVERSION} >= 700000
Diffstat (limited to 'audio/playgsf')
-rw-r--r-- | audio/playgsf/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/audio/playgsf/Makefile b/audio/playgsf/Makefile index 6db3181d012..f6ab44ea46f 100644 --- a/audio/playgsf/Makefile +++ b/audio/playgsf/Makefile @@ -9,7 +9,8 @@ PORTNAME= playgsf PORTVERSION= 0.7.1 CATEGORIES= audio MASTER_SITES= http://projects.raphnet.net/playgsf/ \ - http://critical.ch/distfiles/ + http://critical.ch/distfiles/ \ + http://energy.critical.ch/distfiles/ MAINTAINER= ehaupt@FreeBSD.org COMMENT= A command line player for gsf audio files @@ -35,6 +36,12 @@ PLIST_FILES= bin/playgsf # contains x86 assembler ONLY_FOR_ARCHS= i386 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700000 +BROKEN= Does not configure on FreeBSD 7.x +.endif + post-patch: @${REINPLACE_CMD} \ -e 's|\(@LDFLAGS@\)|\1 ${LDFLAGS}|' \ @@ -52,4 +59,4 @@ do-install: post-install: ${CAT} ${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |