diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-12-15 21:59:03 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-12-15 21:59:03 +0000 |
commit | a19b6eb52c3e08165351e1171169ccb3433a6f78 (patch) | |
tree | 93bca90df57d739959a355e0e63fda87e6defa29 /media-video/mkvtoolnix/mkvtoolnix-1.5.5.ebuild | |
parent | Tighten up versioning to try to prevent mismatch problems as seen in #112348. (diff) | |
download | gentoo-2-a19b6eb52c3e08165351e1171169ccb3433a6f78.tar.gz gentoo-2-a19b6eb52c3e08165351e1171169ccb3433a6f78.tar.bz2 gentoo-2-a19b6eb52c3e08165351e1171169ccb3433a6f78.zip |
Added patch to link against lzo2 (bug #112372). Also dropped gtk2 useflag as wxGTK 2.6 defaults to building only gtk2 version.
(Portage version: 2.0.53)
Diffstat (limited to 'media-video/mkvtoolnix/mkvtoolnix-1.5.5.ebuild')
-rw-r--r-- | media-video/mkvtoolnix/mkvtoolnix-1.5.5.ebuild | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/media-video/mkvtoolnix/mkvtoolnix-1.5.5.ebuild b/media-video/mkvtoolnix/mkvtoolnix-1.5.5.ebuild index 7b2393dc05d5..5dcd20eea430 100644 --- a/media-video/mkvtoolnix/mkvtoolnix-1.5.5.ebuild +++ b/media-video/mkvtoolnix/mkvtoolnix-1.5.5.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-video/mkvtoolnix/mkvtoolnix-1.5.5.ebuild,v 1.4 2005/11/19 23:37:12 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/mkvtoolnix-1.5.5.ebuild,v 1.5 2005/12/15 21:59:03 flameeyes Exp $ inherit eutils wxwidgets @@ -11,7 +11,7 @@ SRC_URI="http://www.bunkus.org/videotools/mkvtoolnix/sources/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc x86" -IUSE="gtk2 wxwindows flac bzip2 lzo" +IUSE="wxwindows flac bzip2 lzo" DEPEND=">=dev-libs/libebml-0.7.3 >=media-libs/libmatroska-0.7.5 @@ -27,13 +27,7 @@ DEPEND=">=dev-libs/libebml-0.7.3 pkg_setup() { WX_GTK_VER="2.6" if use wxwindows; then - if ! use gtk2 ; then - need-wxwidgets gtk || die "You must compile wxGTK without wx_nogtk useflag." - else - need-wxwidgets gtk2 || die "You must compile wxGTK with gtk2 useflag." - fi - elif use gtk2; then - einfo "You won't have gtk2 support as you requested not to use wxwindows." + need-wxwidgets gtk2 || die "You must compile wxGTK with X useflag." fi } |