diff options
author | bapt <bapt@FreeBSD.org> | 2013-07-10 05:26:27 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-07-10 05:26:27 +0800 |
commit | 4b94d4d277c15838c6d6967046e96440c20982ef (patch) | |
tree | 61262f6fe8a3b0558778a5ca1c7e157c7c0f4c25 /audio/timidity++ | |
parent | 94c10076d46b9ff3b6d02ba060433b0ca006e719 (diff) | |
download | freebsd-ports-gnome-4b94d4d277c15838c6d6967046e96440c20982ef.tar.gz freebsd-ports-gnome-4b94d4d277c15838c6d6967046e96440c20982ef.tar.zst freebsd-ports-gnome-4b94d4d277c15838c6d6967046e96440c20982ef.zip |
Fix HAVE_GNOME screaming
Diffstat (limited to 'audio/timidity++')
-rw-r--r-- | audio/timidity++/Makefile | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/audio/timidity++/Makefile b/audio/timidity++/Makefile index 9891dde47240..a0fa506d2c3f 100644 --- a/audio/timidity++/Makefile +++ b/audio/timidity++/Makefile @@ -58,13 +58,6 @@ LIB_DEPENDS+= png15:${PORTSDIR}/graphics/png CPPFLAGS+= -I${LOCALBASE}/include/libpng15 .endif -.if ${HAVE_GNOME:Mesound}!="" -USE_GNOME= esound -CONFIGURE_ARGS+=--enable-audio=oss,esd,vorbis -.else -CONFIGURE_ARGS+=--enable-audio=oss,vorbis -.endif - pre-su-install: @${MKDIR} ${PREFIX}/share/timidity ${PREFIX}/${TIMID_LIBDIR} @@ -77,6 +70,15 @@ post-install:: .include "${MASTERDIR}/Makefile.interface" .endif # !defined(PKGNAMESUFFIX) +.include <bsd.port.pre.mk> + +.if ${HAVE_GNOME:Mesound}!="" +USE_GNOME= esound +CONFIGURE_ARGS+=--enable-audio=oss,esd,vorbis +.else +CONFIGURE_ARGS+=--enable-audio=oss,vorbis +.endif + post-install:: .if !defined(NOPORTDOCS) && defined(DOCFILES) .for lang in ${DOCLANG} @@ -89,4 +91,4 @@ post-install:: @${CAT} ${PKGMESSAGE} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |