summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <drac@gentoo.org>2008-04-18 13:55:21 +0000
committerSamuli Suominen <drac@gentoo.org>2008-04-18 13:55:21 +0000
commitfe41467db062a589a4906e7576da5a9d09567206 (patch)
tree63f3c85ee557833375e0104b5a81daf81789cc98 /media-libs/libtheora
parentalso mask old mlton version that deps on mlton-bin (diff)
downloadgentoo-2-fe41467db062a589a4906e7576da5a9d09567206.tar.gz
gentoo-2-fe41467db062a589a4906e7576da5a9d09567206.tar.bz2
gentoo-2-fe41467db062a589a4906e7576da5a9d09567206.zip
TEXTRELs are back and filter-flags isn't needed anymore according to bug #200549, comment #28. Updated PIC patch is needed.
(Portage version: 2.1.5_rc4)
Diffstat (limited to 'media-libs/libtheora')
-rw-r--r--media-libs/libtheora/ChangeLog6
-rw-r--r--media-libs/libtheora/libtheora-1.0_beta3.ebuild9
2 files changed, 9 insertions, 6 deletions
diff --git a/media-libs/libtheora/ChangeLog b/media-libs/libtheora/ChangeLog
index 88252298360f..507755ef6010 100644
--- a/media-libs/libtheora/ChangeLog
+++ b/media-libs/libtheora/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/libtheora
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.72 2008/04/17 11:27:38 drac Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.73 2008/04/18 13:55:21 drac Exp $
+
+ 18 Apr 2008; Samuli Suominen <drac@gentoo.org> libtheora-1.0_beta3.ebuild:
+ TEXTRELs are back and filter-flags isn't needed anymore according to bug
+ #200549, comment #28. Updated PIC patch is needed.
*libtheora-1.0_beta3 (17 Apr 2008)
diff --git a/media-libs/libtheora/libtheora-1.0_beta3.ebuild b/media-libs/libtheora/libtheora-1.0_beta3.ebuild
index da08fa8c01e9..81864f6eb2d1 100644
--- a/media-libs/libtheora/libtheora-1.0_beta3.ebuild
+++ b/media-libs/libtheora/libtheora-1.0_beta3.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.0_beta3.ebuild,v 1.1 2008/04/17 11:27:38 drac Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.0_beta3.ebuild,v 1.2 2008/04/18 13:55:21 drac Exp $
inherit autotools eutils toolchain-funcs flag-o-matic
@@ -11,7 +11,7 @@ SRC_URI="http://downloads.xiph.org/releases/theora/${P/_}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
-IUSE="doc encode examples"
+IUSE="doc encode examples pic"
RDEPEND="media-libs/libogg
encode? ( media-libs/libvorbis )"
@@ -29,12 +29,11 @@ src_unpack() {
}
src_compile() {
- use x86 && filter-flags -fforce-addr -frename-registers #200549
-
+ use pic && local myconf="--disable-asm" #200549, comment #28
use doc || export ac_cv_prog_HAVE_DOXYGEN="false"
econf --disable-dependency-tracking --disable-examples \
- --disable-sdltest $(use_enable encode)
+ --disable-sdltest $(use_enable encode) ${myconf}
emake || die "emake failed."
}