diff options
author | pgollucci <pgollucci@FreeBSD.org> | 2010-09-14 10:39:45 +0800 |
---|---|---|
committer | pgollucci <pgollucci@FreeBSD.org> | 2010-09-14 10:39:45 +0800 |
commit | 0c27eb7d5536b54184d0e47379b1e9beece58a04 (patch) | |
tree | 1fcb46bbc472e93a45fd3f873385e1dcc28e5e7d /sysutils | |
parent | b6fea40bb479a749a34c8b6aaac9d0a78fbe1261 (diff) | |
download | freebsd-ports-gnome-0c27eb7d5536b54184d0e47379b1e9beece58a04.tar.gz freebsd-ports-gnome-0c27eb7d5536b54184d0e47379b1e9beece58a04.tar.zst freebsd-ports-gnome-0c27eb7d5536b54184d0e47379b1e9beece58a04.zip |
- Fix muine dependency which is not required and only usable on i386
PR: ports/138179
Reported by: Kevin Oberman <oberman@es.net>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/serpentine/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/sysutils/serpentine/Makefile b/sysutils/serpentine/Makefile index 5d67df3ea9a6..eff3f1980ad6 100644 --- a/sysutils/serpentine/Makefile +++ b/sysutils/serpentine/Makefile @@ -9,8 +9,7 @@ PORTNAME= serpentine PORTVERSION= 0.7 PORTREVISION= 7 CATEGORIES= sysutils -MASTER_SITES= ${MASTER_SITE_BERLIOS} -MASTER_SITE_SUBDIR= ${PORTNAME} +MASTER_SITES= BERLIOS MAINTAINER= ports@FreeBSD.org COMMENT= Gnome Audio Cd Burner @@ -25,11 +24,15 @@ USE_GMAKE= yes USE_GSTREAMER= core gnomevfs python USE_PYTHON= 2.4+ -OPTIONS= MUINE "Cd-Burner Plugin for muine audio player (i386 only)" Off - .include <bsd.port.pre.mk> -.if (defined(WITH_MUINE) || exists(${LOCALBASE}/bin/muine)) && ${ARCH}=="i386" +.if ${ARCH} == "i386" +OPTIONS= MUINE "Cd-Burner Plugin for muine audio player" Off +.endif + +.include <bsd.port.options.mk> + +.if defined(WITH_MUINE) BUILD_DEPENDS+= muine:${PORTSDIR}/audio/muine RUN_DEPENDS+= muine:${PORTSDIR}/audio/muine PLIST_SUB+= MUINE="" |