diff options
author | danfe <danfe@FreeBSD.org> | 2012-08-20 16:47:18 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2012-08-20 16:47:18 +0800 |
commit | 53dc957c2ae51161ec621986c9ffd99db3b4b15f (patch) | |
tree | 66e10cee192c987d6ff09daef5769cadf37a52da /audio | |
parent | b392b48c0749f128c2308a733b966a54123ba726 (diff) | |
download | freebsd-ports-gnome-53dc957c2ae51161ec621986c9ffd99db3b4b15f.tar.gz freebsd-ports-gnome-53dc957c2ae51161ec621986c9ffd99db3b4b15f.tar.zst freebsd-ports-gnome-53dc957c2ae51161ec621986c9ffd99db3b4b15f.zip |
- Update to latest github snapshot (tagged 0.5.0; fetch distfile from Gentoo)
and switch to textproc/raptor2 (required for upcoming audio/ardour update)
- Do some small Makefile cleanups and touch port description while I am here
- Teach configure script of audio/aqualung to use `pkg-config --cflags lrdf`,
so it can always find correct headers
Submitted by: nox@ (a while ago)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/aqualung/files/patch-configure | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/audio/aqualung/files/patch-configure b/audio/aqualung/files/patch-configure new file mode 100644 index 000000000000..cc6d586f7c6a --- /dev/null +++ b/audio/aqualung/files/patch-configure @@ -0,0 +1,19 @@ +--- configure.orig 2010-02-01 00:30:18.000000000 +0800 ++++ configure 2012-08-19 21:26:55.000000000 +0800 +@@ -10920,6 +10920,7 @@ + { $as_echo "$as_me:$LINENO: result: yes" >&5 + $as_echo "yes" >&6; } + lrdf_LIBS=`pkg-config --libs lrdf` ++ lrdf_CFLAGS=`pkg-config --cflags lrdf` + + cat >>confdefs.h <<\_ACEOF + #define HAVE_LADSPA 1 +@@ -11801,7 +11802,7 @@ + + CFLAGS="$CFLAGS $BUILD_CFLAGS -Wall $PLATFORM_CFLAGS $AQUALUNG_SKINDIR $AQUALUNG_LOCALEDIR $AQUALUNG_DATADIR -D_GNU_SOURCE" + CXXFLAGS="$CFLAGS" +-CPPFLAGS="$gtk_CFLAGS $glib_CFLAGS $xml_CFLAGS $alsa_CFLAGS $jack_CFLAGS $cdda_CFLAGS $pulse_CFLAGS" ++CPPFLAGS="$gtk_CFLAGS $glib_CFLAGS $xml_CFLAGS $alsa_CFLAGS $jack_CFLAGS $cdda_CFLAGS $pulse_CFLAGS $lrdf_CFLAGS" + LIBS="decoder/libdecoder.a encoder/libencoder.a $gtk_LIBS $glib_LIBS $xml_LIBS $jack_LIBS $lrdf_LIBS $src_LIBS $alsa_LIBS $sndio_LIBS $oss_LIBS $sndfile_LIBS $flac_LIBS $ogg_LIBS $wavpack_LIBS $speex_LIBS $mad_LIBS $mod_LIBS $mpc_LIBS $mac_LIBS $lavc_LIBS $vorbisenc_LIBS $lame_LIBS $cdda_LIBS $cddb_LIBS $ifp_LIBS $PLATFORM_LIBS $z_LIBS $bz2_LIBS $lua_LIBS $pulse_LIBS" + + |