diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2005-02-08 03:29:08 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2005-02-08 03:29:08 +0000 |
commit | fc92eb9a5dd21140074e523a7553a93a7a7f4f14 (patch) | |
tree | e576945ae6819de87733331847cf72dad319e7bc /media-tv/mythfrontend | |
parent | Cleaned out old ebuilds, tidied up the symlink logic and bumped. (diff) | |
download | gentoo-2-fc92eb9a5dd21140074e523a7553a93a7a7f4f14.tar.gz gentoo-2-fc92eb9a5dd21140074e523a7553a93a7a7f4f14.tar.bz2 gentoo-2-fc92eb9a5dd21140074e523a7553a93a7a7f4f14.zip |
compile fix for 0.16 users
(Portage version: 2.0.51.16)
Diffstat (limited to 'media-tv/mythfrontend')
-rw-r--r-- | media-tv/mythfrontend/mythfrontend-0.16.20050115.ebuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/media-tv/mythfrontend/mythfrontend-0.16.20050115.ebuild b/media-tv/mythfrontend/mythfrontend-0.16.20050115.ebuild index ecd3ff08523e..4bdf9c44b9d5 100644 --- a/media-tv/mythfrontend/mythfrontend-0.16.20050115.ebuild +++ b/media-tv/mythfrontend/mythfrontend-0.16.20050115.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-tv/mythfrontend/mythfrontend-0.16.20050115.ebuild,v 1.1 2005/01/18 20:00:33 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-tv/mythfrontend/mythfrontend-0.16.20050115.ebuild,v 1.2 2005/02/08 03:29:08 cardoe Exp $ inherit myth flag-o-matic @@ -56,6 +56,12 @@ pkg_setup() { } setup_pro() { + sed -e 's:EXTRA_LIBS += -L/usr/X11R6/lib -lXinerama -lXv -lX11 -lXext -lXxf86vm:EXTRA_LIBS += -lXinerama -lXv -lX11 -lXext -lXxf86vm:' \ + -i 'settings.pro' || die "failed to remove extra library path" + + sed -e 's:LIBVERSION = 0.16:LIBVERSION = 0.16.20050115:' \ + -i 'settings.pro' || die "failed to correct library version" + sed -e "s:CONFIG += linux backend:CONFIG += linux:" \ -i 'settings.pro' || die "Removal of mythbackend failed" |