diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2016-07-28 21:37:20 -0400 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2016-07-28 21:38:02 -0400 |
commit | 7da5ce67a08a90afbbe4b2c82393cd7fca0d74d6 (patch) | |
tree | 2870e00ebdbe3566e4c9ca2386447978dc5a2864 /media-tv/nvtv/files | |
parent | net-analyzer/flow-tools: get to the bottom of the weird pidfile behavior in t... (diff) | |
download | gentoo-7da5ce67a08a90afbbe4b2c82393cd7fca0d74d6.tar.gz gentoo-7da5ce67a08a90afbbe4b2c82393cd7fca0d74d6.tar.bz2 gentoo-7da5ce67a08a90afbbe4b2c82393cd7fca0d74d6.zip |
media-tv/nvtv: new revision with a patch to respect CFLAGS.
Gentoo-Bug: 240836
Package-Manager: portage-2.2.28
Diffstat (limited to 'media-tv/nvtv/files')
-rw-r--r-- | media-tv/nvtv/files/respect-cflags.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/media-tv/nvtv/files/respect-cflags.patch b/media-tv/nvtv/files/respect-cflags.patch new file mode 100644 index 000000000000..2fa991f72638 --- /dev/null +++ b/media-tv/nvtv/files/respect-cflags.patch @@ -0,0 +1,31 @@ +The rest of the build system will respect the user's CFLAGS if we +don't wipe them out, so just delete the line that does that. The +removal of the gtk-1.x stuff is so that we can run eautoreconf and +have it work; we don't support gtk1 in Gentoo anyway. + +diff --git a/configure.in b/configure.in +index f8f48cc..d8f1261 100755 +--- a/configure.in ++++ b/configure.in +@@ -57,9 +57,6 @@ dnl + dnl Debugging enables, CFLAGS + dnl + +-dnl Clear -g -O2 from CFLAGS +-CFLAGS="" +- + AC_MSG_CHECKING(for debugging info) + + AC_ARG_ENABLE(debug, +@@ -110,11 +107,6 @@ if test ${with_gtk} = no ; then + fi + + if test ${have_gtk} = no ; then +- if test ${with_gtk} = yes -o ${with_gtk} = gtk1 ; then +- AM_PATH_GTK(1.2.0, have_gtk=gtk1) +- fi +-fi +-if test ${have_gtk} = no ; then + if test ${with_gtk} = yes -o ${with_gtk} = gtk2 ; then + AM_PATH_GTK_2_0(2.0.0, have_gtk=gtk2) + fi |