diff options
author | 2002-06-23 18:32:39 +0000 | |
---|---|---|
committer | 2002-06-23 18:32:39 +0000 | |
commit | d7796fdc28a361e9ee830f5e1d1e66b92045bd06 (patch) | |
tree | 3a9a69262655237d8a99378eb6400907535e23d2 /media-libs | |
parent | new release - due to a race condition in the previous run-crons - thanks jnel... (diff) | |
download | historical-d7796fdc28a361e9ee830f5e1d1e66b92045bd06.tar.gz historical-d7796fdc28a361e9ee830f5e1d1e66b92045bd06.tar.bz2 historical-d7796fdc28a361e9ee830f5e1d1e66b92045bd06.zip |
minor change for logo file location
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/xine-lib/xine-lib-0.9.12.ebuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/media-libs/xine-lib/xine-lib-0.9.12.ebuild b/media-libs/xine-lib/xine-lib-0.9.12.ebuild index fe6059bf88d9..0baa7ffed2d5 100644 --- a/media-libs/xine-lib/xine-lib-0.9.12.ebuild +++ b/media-libs/xine-lib/xine-lib-0.9.12.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 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-0.9.12.ebuild,v 1.2 2002/06/23 16:30:45 lostlogic Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/xine-lib/xine-lib-0.9.12.ebuild,v 1.3 2002/06/23 18:32:39 lostlogic Exp $ DESCRIPTION="Xine is a free gpl-licensed video player for unix-like systems" HOMEPAGE="http://xine.sourceforge.net/" @@ -30,6 +30,12 @@ src_unpack() { unpack ${A} cd ${S} + for file in `grep -l -r "xine_logo.mpg" *`; do + sed -e "s:xine_logo.mpg:xine_logo.mpv:g" ${file} \ + > ${file}.hacked || die + mv ${file}.hacked ${file} || die + done + use directfb && ( \ patch -p0 < ${FILESDIR}/xineconfig.patch-${PV} || die ) || patch -p1 < ${FILESDIR}/xine-lib-disable-directfb.patch || die |