diff options
author | Tom McLaughlin <tmclaugh@FreeBSD.org> | 2007-10-11 03:09:26 +0000 |
---|---|---|
committer | Tom McLaughlin <tmclaugh@FreeBSD.org> | 2007-10-11 03:09:26 +0000 |
commit | d5cc5308a905ba2bccf3cf30e50d1b16f4ab2168 (patch) | |
tree | 7eb2bea83420246bc5f34407b62b01db5d4596b3 /audio/muine | |
parent | 8ba89d398a79ea20b915c7a98d2514b35bee1653 (diff) |
Add --enable-compile-warnings=maximum to CONFIGURE_ARGS to fix an
annoyance where vorbis headers cause compilation to fail.
PR: 116692
Submitted by: Robert Noland
Notes
Notes:
svn path=/head/; revision=201283
Diffstat (limited to 'audio/muine')
-rw-r--r-- | audio/muine/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/audio/muine/Makefile b/audio/muine/Makefile index c61b556ef7a3..05803f7f6595 100644 --- a/audio/muine/Makefile +++ b/audio/muine/Makefile @@ -3,12 +3,12 @@ # Whom: Tom McLaughlin <tmclaugh@sdf.lonestar.org> # # $FreeBSD$ -# $Id: Makefile,v 1.54 2007/01/26 03:17:25 tmclau02 Exp $ +# $Id: Makefile,v 1.56 2007/10/10 16:52:55 killfill Exp $ # PORTNAME= muine PORTVERSION= 0.8.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio gnome MASTER_SITES= http://muine-player.org/releases/ @@ -23,6 +23,7 @@ LIB_DEPENDS= FLAC.7:${PORTSDIR}/audio/flac \ RUN_DEPENDS= dbus-daemon:${PORTSDIR}/devel/dbus USE_GMAKE= yes +USE_GETTEXT= yes USE_GNOME= gnomeprefix gnomehack intltool libgnomeui gnomesharp20 GNU_CONFIGURE= yes INSTALLS_ICONS= yes @@ -31,6 +32,8 @@ CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" \ GACUTIL_FLAGS="/package muine /gacdir $(libdir) /root $(libdir)" +CONFIGURE_ARGS+= --enable-compile-warnings=maximum + GCONF_SCHEMAS= muine.schemas OPTIONS= XINE "Enable Xine backend" off \ |