diff options
author | 2007-09-01 06:17:37 +0000 | |
---|---|---|
committer | 2007-09-01 06:17:37 +0000 | |
commit | 79e33ecce81de50899e71c6024006215d49dea56 (patch) | |
tree | 8f714adc20affc0d9db44373581643b6d54873d1 /media-video | |
parent | Revision bumps for both slots. No longer installs /usr/bin/rails. Instead, us... (diff) | |
download | gentoo-2-79e33ecce81de50899e71c6024006215d49dea56.tar.gz gentoo-2-79e33ecce81de50899e71c6024006215d49dea56.tar.bz2 gentoo-2-79e33ecce81de50899e71c6024006215d49dea56.zip |
Add USE encode check for libtheora wrt #168989.
(Portage version: 2.1.3.7)
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/istanbul/ChangeLog | 5 | ||||
-rw-r--r-- | media-video/istanbul/istanbul-0.2.2.ebuild | 10 |
2 files changed, 12 insertions, 3 deletions
diff --git a/media-video/istanbul/ChangeLog b/media-video/istanbul/ChangeLog index aabc5df2841a..418e6694dfa5 100644 --- a/media-video/istanbul/ChangeLog +++ b/media-video/istanbul/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-video/istanbul # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/istanbul/ChangeLog,v 1.10 2007/02/23 12:42:39 zaheerm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/istanbul/ChangeLog,v 1.11 2007/09/01 06:17:37 drac Exp $ + + 01 Sep 2007; Samuli Suominen <drac@gentoo.org> istanbul-0.2.2.ebuild: + Add USE encode check for libtheora wrt #168989. *istanbul-0.2.2 (23 Feb 2007) diff --git a/media-video/istanbul/istanbul-0.2.2.ebuild b/media-video/istanbul/istanbul-0.2.2.ebuild index 09afd1231f01..8d5b0a52591b 100644 --- a/media-video/istanbul/istanbul-0.2.2.ebuild +++ b/media-video/istanbul/istanbul-0.2.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/istanbul/istanbul-0.2.2.ebuild,v 1.1 2007/02/23 12:42:39 zaheerm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/istanbul/istanbul-0.2.2.ebuild,v 1.2 2007/09/01 06:17:37 drac Exp $ inherit eutils gnome2 python autotools @@ -23,12 +23,18 @@ RDEPEND=">=media-libs/gst-plugins-base-0.10.8 >=media-libs/libtheora-1.0_alpha6 =media-plugins/gst-plugins-gconf-0.10* dev-python/python-xlib" - DEPEND="${RDEPEND} >=dev-util/intltool-0.35.0" SRC_URI="http://zaheer.merali.org/${P}.tar.bz2" +pkg_setup() { + if ! built_with_use media-libs/libtheora encode; then + eerror "You need to rebuild media-libs/libtheora with USE flag encode." + die "media-libs/libtheora needs USE flag encode." + fi +} + src_unpack() { gnome2_src_unpack |