diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2015-04-07 02:59:20 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2015-04-07 02:59:20 +0800 |
commit | 246907b8a372ede62949f176f522412f9d12aa11 (patch) | |
tree | 523f6f2ead21760b07da5ccf438836290130e000 /audio | |
parent | b1bbfe4a9eb8771a75b5505e94fed9b44e21a04a (diff) | |
download | freebsd-ports-gnome-246907b8a372ede62949f176f522412f9d12aa11.tar.gz freebsd-ports-gnome-246907b8a372ede62949f176f522412f9d12aa11.tar.zst freebsd-ports-gnome-246907b8a372ede62949f176f522412f9d12aa11.zip |
- Update MASTER_SITES and unbreak this port
- Sort LIB_DEPENDS
- Group options helper
PR: 199213
Submitted by: <tkato432@yahoo.com>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/muse/Makefile | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/audio/muse/Makefile b/audio/muse/Makefile index 1575ff1d924b..c52488ab11b8 100644 --- a/audio/muse/Makefile +++ b/audio/muse/Makefile @@ -5,16 +5,15 @@ PORTNAME= MuSE PORTVERSION= 0.9.2 PORTREVISION= 14 CATEGORIES= audio -MASTER_SITES= http://files.dyne.org/.xsend.php?file=muse/releases/ +MASTER_SITES= https://files.dyne.org/muse/sources/ MAINTAINER= ports@FreeBSD.org COMMENT= Multiple Streaming Engine LICENSE= GPLv2 -BROKEN= Unfetchable -LIB_DEPENDS= libvorbis.so:${PORTSDIR}/audio/libvorbis \ - libogg.so:${PORTSDIR}/audio/libogg +LIB_DEPENDS= libogg.so:${PORTSDIR}/audio/libogg \ + libvorbis.so:${PORTSDIR}/audio/libvorbis OPTIONS_DEFINE= X11 LAME SNDFILE DOCS OPTIONS_DEFAULT=X11 @@ -32,13 +31,11 @@ PLIST_FILES= bin/muse man/man1/muse.1.gz PLIST_FILES+= share/locale/${lang}/LC_MESSAGES/muse.mo .endfor -X11_USE= GNOME=gtk20 -X11_CONFIGURE_OFF= --without-x --with-rubik - LAME_LIB_DEPENDS= libmp3lame.so:${PORTSDIR}/audio/lame LAME_CONFIGURE_ENV= ac_cv_header_lame_lame_h=no - SNDFILE_LIB_DEPENDS= libsndfile.so:${PORTSDIR}/audio/libsndfile +X11_USE= GNOME=gtk20 +X11_CONFIGURE_OFF= --without-x --with-rubik .include <bsd.port.options.mk> @@ -52,6 +49,6 @@ post-patch: post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .include <bsd.port.mk> |