diff options
author | Travis Tilley <lv@gentoo.org> | 2004-04-10 01:31:30 +0000 |
---|---|---|
committer | Travis Tilley <lv@gentoo.org> | 2004-04-10 01:31:30 +0000 |
commit | 4071dc788b8cedd802c70fbfa8e9c1e3bfcd2b4f (patch) | |
tree | b6bec7ce4fb778f3492e5830e4e1e9f88d484a71 /media-libs | |
parent | Marked stable on mips. (Manifest recommit) (diff) | |
download | gentoo-2-4071dc788b8cedd802c70fbfa8e9c1e3bfcd2b4f.tar.gz gentoo-2-4071dc788b8cedd802c70fbfa8e9c1e3bfcd2b4f.tar.bz2 gentoo-2-4071dc788b8cedd802c70fbfa8e9c1e3bfcd2b4f.zip |
-fPIC fix on amd64
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libmatroska/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/libmatroska/libmatroska-0.6.3.ebuild | 8 |
2 files changed, 11 insertions, 2 deletions
diff --git a/media-libs/libmatroska/ChangeLog b/media-libs/libmatroska/ChangeLog index 62a8aa28a64b..35dd9420a57a 100644 --- a/media-libs/libmatroska/ChangeLog +++ b/media-libs/libmatroska/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/libmatroska # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libmatroska/ChangeLog,v 1.18 2004/04/04 04:08:31 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libmatroska/ChangeLog,v 1.19 2004/04/10 01:31:30 lv Exp $ + + 09 Apr 2004; Travis Tilley <lv@gentoo.org> libmatroska-0.6.3.ebuild: + -fPIC fix on amd64 that allows vlc to compile with matroska support 03 Apr 2004; Jason Wever <weeve@gentoo.org> libmatroska-0.6.3.ebuild: Added ~sparc keyword. diff --git a/media-libs/libmatroska/libmatroska-0.6.3.ebuild b/media-libs/libmatroska/libmatroska-0.6.3.ebuild index d637ec830f83..1371667b422c 100644 --- a/media-libs/libmatroska/libmatroska-0.6.3.ebuild +++ b/media-libs/libmatroska/libmatroska-0.6.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libmatroska/libmatroska-0.6.3.ebuild,v 1.4 2004/04/04 04:08:31 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libmatroska/libmatroska-0.6.3.ebuild,v 1.5 2004/04/10 01:31:30 lv Exp $ IUSE="" @@ -19,6 +19,12 @@ DEPEND="virtual/glibc src_compile() { cd ${S}/make/linux + + # This is needed on amd64 to create shared libraries that make + # use of matroska, like libvlcplugin from vlc. + # Travis Tilley <lv@gentoo.org> 09 Apr 2004 + use amd64 && append-flags -fPIC + sed -i -e 's/CXXFLAGS=/CXXFLAGS+=/g' Makefile make PREFIX=/usr \ LIBEBML_INCLUDE_DIR=/usr/include/ebml \ |