diff options
author | Chris White <chriswhite@gentoo.org> | 2005-01-11 20:28:06 +0000 |
---|---|---|
committer | Chris White <chriswhite@gentoo.org> | 2005-01-11 20:28:06 +0000 |
commit | bad0eb902aa69006344a4b4cc2c88bc2b830ca10 (patch) | |
tree | 0b0e540efeacd190f23234240bffcaa09db8c725 /media-video | |
parent | sparc (Manifest recommit) (diff) | |
download | gentoo-2-bad0eb902aa69006344a4b4cc2c88bc2b830ca10.tar.gz gentoo-2-bad0eb902aa69006344a4b4cc2c88bc2b830ca10.tar.bz2 gentoo-2-bad0eb902aa69006344a4b4cc2c88bc2b830ca10.zip |
Fixed lots of broken things as far as CFLAGS and configuration.
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/lve/ChangeLog | 7 | ||||
-rw-r--r-- | media-video/lve/lve-040322.ebuild | 16 |
2 files changed, 18 insertions, 5 deletions
diff --git a/media-video/lve/ChangeLog b/media-video/lve/ChangeLog index 0bd1567271dd..af49cfd5d228 100644 --- a/media-video/lve/ChangeLog +++ b/media-video/lve/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-video/lve -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/lve/ChangeLog,v 1.8 2004/09/05 18:06:43 malc Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/lve/ChangeLog,v 1.9 2005/01/11 20:28:06 chriswhite Exp $ + + 12 Jan 2005; Chris White <chriswhite@gentoo.org> lve-040322.ebuild: + Fixed lots of broken things as far as CFLAGS and configuration. 05 Sep 2004; Malcolm Lashley <malc@gentoo.org> lve-040322.ebuild: ~amd64 closes 59091 diff --git a/media-video/lve/lve-040322.ebuild b/media-video/lve/lve-040322.ebuild index 792d940f8f93..8ab0aa902665 100644 --- a/media-video/lve/lve-040322.ebuild +++ b/media-video/lve/lve-040322.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/lve/lve-040322.ebuild,v 1.8 2004/09/05 18:06:43 malc Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/lve/lve-040322.ebuild,v 1.9 2005/01/11 20:28:06 chriswhite Exp $ inherit eutils gcc @@ -49,7 +49,17 @@ src_unpack() { src_compile() { cd ${WORKDIR}/lve - make || die + make config + + cd src + make global_config + cd .. + + sed -e "s:CFLAGS.*:CFLAGS = ${CFLAGS}:" \ + -i src/global_config \ + || die "Could not patch in CFLAGS" + + make CLFAGS="${CFLAGS}" || die } src_install() { |