diff options
author | Arcady Genkin <agenkin@gentoo.org> | 2003-08-12 19:41:09 +0000 |
---|---|---|
committer | Arcady Genkin <agenkin@gentoo.org> | 2003-08-12 19:41:09 +0000 |
commit | 86c249d7ab4856954c1576ddd607ec7d7deae9fc (patch) | |
tree | 3000874a3b2c3be5a5ead29e9277aa4460a70034 /media-libs | |
parent | Add a postinst warning (diff) | |
download | historical-86c249d7ab4856954c1576ddd607ec7d7deae9fc.tar.gz historical-86c249d7ab4856954c1576ddd607ec7d7deae9fc.tar.bz2 historical-86c249d7ab4856954c1576ddd607ec7d7deae9fc.zip |
Added speex to dependencies.
Cosmetic clean-up for gnome-vfs related code.
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/xine-lib/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/xine-lib/xine-lib-1_rc0-r1.ebuild | 12 |
2 files changed, 11 insertions, 8 deletions
diff --git a/media-libs/xine-lib/ChangeLog b/media-libs/xine-lib/ChangeLog index 1770d91a6375..8d681eab4ec3 100644 --- a/media-libs/xine-lib/ChangeLog +++ b/media-libs/xine-lib/ChangeLog @@ -1,6 +1,6 @@ # ChangeLog for media-libs/xine-lib # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/xine-lib/ChangeLog,v 1.61 2003/08/10 14:46:09 tantive Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/xine-lib/ChangeLog,v 1.62 2003/08/12 19:41:09 agenkin Exp $ 10 Aug 2003; Michael Imhof <tantive@gentoo.org> xine-lib-1_rc0-r1: Changed @@ -15,7 +15,10 @@ *xine-lib-1_rc0-r1 (07 Aug 2003) - 07 Aug2003; Arcady Genkin <agenkin@gentoo.org> : + 12 Aug 2003; Arcady Genkin <agenkin@gentoo.org> : + Added media-libs/speex to dependencies (bug #26186). + + 07 Aug 2003; Arcady Genkin <agenkin@gentoo.org> : Version bump to 1-rc0a. *xine-lib-1_beta12-r1 (14 Jul 2003) diff --git a/media-libs/xine-lib/xine-lib-1_rc0-r1.ebuild b/media-libs/xine-lib/xine-lib-1_rc0-r1.ebuild index 081dbf35fa3f..157debe289b0 100644 --- a/media-libs/xine-lib/xine-lib-1_rc0-r1.ebuild +++ b/media-libs/xine-lib/xine-lib-1_rc0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/xine-lib/xine-lib-1_rc0-r1.ebuild,v 1.2 2003/08/10 14:46:09 tantive Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/xine-lib/xine-lib-1_rc0-r1.ebuild,v 1.3 2003/08/12 19:41:09 agenkin Exp $ # this build doesn't play nice with -maltivec (gcc 3.2 only option) on ppc # Commenting this out in this ebuild, because CFLAGS and CXXFLAGS are unset @@ -43,7 +43,8 @@ DEPEND="oggvorbis? ( media-libs/libvorbis ) >=media-libs/flac-1.0.4 >=media-libs/libsdl-1.1.5 >=media-libs/libfame-0.9.0 - >=media-libs/xvid-0.9.0" + >=media-libs/xvid-0.9.0 + media-libs/speex" RDEPEND="${DEPEND} nls? ( sys-devel/gettext )" @@ -93,16 +94,15 @@ src_compile() { econf ${myconf} || die "Configure failed" # since there is no --disable-gnomevfs flag we have to fix config.h by hand - - cp config.h config.h.sed - - if [ ! `use gnome` ] + # Gentoo bug #24409. + if [ ! `use gnome` ] then einfo "supposedly not using gnome. disabling gnome-vfs support" cp config.h config.h.sed cat config.h.sed |sed -e s/\#define\ HAVE_GNOME_VFS\ 1/\#undef\ HAVE_GNOME_VFS/g >config.h rm config.h.sed fi + emake || die "Parallel make failed" } |