summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2005-10-12 12:10:33 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2005-10-12 12:10:33 +0000
commite3684f3aabc2e065e2e397176ec39d0fb7a64461 (patch)
tree4f630b8c4fb1105925b4b8bdfe77bc6f98ad0ec3 /media-video
parentSome more cleanups, also depend on libxml2 if building without java (diff)
downloadgentoo-2-e3684f3aabc2e065e2e397176ec39d0fb7a64461.tar.gz
gentoo-2-e3684f3aabc2e065e2e397176ec39d0fb7a64461.tar.bz2
gentoo-2-e3684f3aabc2e065e2e397176ec39d0fb7a64461.zip
Remove gtk1 support from latest 0.8.2 version as wxGTK 2.6 nos just supports GTK2.
(Portage version: 2.0.53_rc5)
Diffstat (limited to 'media-video')
-rw-r--r--media-video/vlc/ChangeLog6
-rw-r--r--media-video/vlc/vlc-0.8.2-r2.ebuild14
2 files changed, 10 insertions, 10 deletions
diff --git a/media-video/vlc/ChangeLog b/media-video/vlc/ChangeLog
index d44f194481c4..3a0a8c0fa32b 100644
--- a/media-video/vlc/ChangeLog
+++ b/media-video/vlc/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-video/vlc
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/ChangeLog,v 1.107 2005/10/03 09:42:55 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/ChangeLog,v 1.108 2005/10/12 12:10:33 flameeyes Exp $
+
+ 12 Oct 2005; Diego Pettenò <flameeyes@gentoo.org> vlc-0.8.2-r2.ebuild:
+ Remove gtk1 support from latest 0.8.2 version as wxGTK 2.6 nos just supports
+ GTK2.
*vlc-0.8.2-r2 (03 Oct 2005)
diff --git a/media-video/vlc/vlc-0.8.2-r2.ebuild b/media-video/vlc/vlc-0.8.2-r2.ebuild
index 306400c94220..99d748007d5d 100644
--- a/media-video/vlc/vlc-0.8.2-r2.ebuild
+++ b/media-video/vlc/vlc-0.8.2-r2.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/vlc/vlc-0.8.2-r2.ebuild,v 1.1 2005/10/03 09:42:55 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/vlc/vlc-0.8.2-r2.ebuild,v 1.2 2005/10/12 12:10:33 flameeyes Exp $
# Missing USE-flags due to missing deps:
# media-vidoe/vlc:tremor - Enables Tremor decoder support
@@ -25,7 +25,7 @@ KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="a52 3dfx nls unicode debug altivec httpd vlm gnutls live v4l cdda ogg matroska
dvb dvd vcd ffmpeg aac dts flac mpeg vorbis theora X opengl freetype svg fbcon svga
oss aalib ggi libcaca esd arts alsa wxwindows ncurses xosd lirc joystick stream
-mp3 xv bidi gtk2 sdl png xml2 samba daap corba screen mod speex nsplugin"
+mp3 xv bidi sdl png xml2 samba daap corba screen mod speex nsplugin"
RDEPEND="cdda? ( >=dev-libs/libcdio-0.71
>=media-libs/libcddb-0.9.5 )
@@ -94,14 +94,10 @@ DEPEND="${RDEPEND}
pkg_setup() {
if use wxwindows; then
WX_GTK_VER="2.6"
- if use gtk2; then
- if use unicode; then
- need-wxwidgets unicode || die "You need to install wxGTK with unicode support."
- else
- need-wxwidgets gtk2 || die "You need to install wxGTK with gtk2 support."
- fi
+ if use unicode; then
+ need-wxwidgets unicode || die "You need to install wxGTK with unicode support."
else
- need-wxwidgets gtk || die "You need to install wxGTK with gtk support."
+ need-wxwidgets gtk2 || die "You need to install wxGTK with gtk support."
fi
fi
}