diff options
author | Donnie Berkholz <spyderous@gentoo.org> | 2004-10-28 15:21:51 +0000 |
---|---|---|
committer | Donnie Berkholz <spyderous@gentoo.org> | 2004-10-28 15:21:51 +0000 |
commit | 7f31f78911a561a43dc957d31026f6c2d5a41c2c (patch) | |
tree | eb4356598f035f416b6fd671e5cdc5a5a8385106 /x11-misc/videogen | |
parent | Fixing 1.1.0 ebuild trying to install files from livecd/kconfig, which no lon... (diff) | |
download | gentoo-2-7f31f78911a561a43dc957d31026f6c2d5a41c2c.tar.gz gentoo-2-7f31f78911a561a43dc957d31026f6c2d5a41c2c.tar.bz2 gentoo-2-7f31f78911a561a43dc957d31026f6c2d5a41c2c.zip |
Change from CC to tc-getCC in toolchain-funcs eclass to fix for newer gcc-config.
Diffstat (limited to 'x11-misc/videogen')
-rw-r--r-- | x11-misc/videogen/ChangeLog | 6 | ||||
-rw-r--r-- | x11-misc/videogen/videogen-0.32.ebuild | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/x11-misc/videogen/ChangeLog b/x11-misc/videogen/ChangeLog index 4a7357812c97..a7eb03e11d6d 100644 --- a/x11-misc/videogen/ChangeLog +++ b/x11-misc/videogen/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-misc/videogen # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/videogen/ChangeLog,v 1.3 2004/06/28 20:26:36 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/videogen/ChangeLog,v 1.4 2004/10/28 15:21:51 spyderous Exp $ + + 28 Oct 2004; Donnie Berkholz,,, <donnie@gentoo.org> videogen-0.32.ebuild: + Change from CC to tc-getCC in toolchain-funcs eclass to fix for newer + gcc-config. 28 Jun 2004; Aron Griffis <agriffis@gentoo.org> videogen-0.32.ebuild: add sed-4 dep diff --git a/x11-misc/videogen/videogen-0.32.ebuild b/x11-misc/videogen/videogen-0.32.ebuild index 9f98f2fe9ffa..7d9114b88b08 100644 --- a/x11-misc/videogen/videogen-0.32.ebuild +++ b/x11-misc/videogen/videogen-0.32.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/videogen/videogen-0.32.ebuild,v 1.3 2004/06/28 20:26:36 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/videogen/videogen-0.32.ebuild,v 1.4 2004/10/28 15:21:51 spyderous Exp $ + +inherit toolchain-funcs DESCRIPTION="Small utility to generate XFree86 modelines and fbset timings" HOMEPAGE="http://www.dynaweb.hu/opensource/videogen/" @@ -14,7 +16,7 @@ DEPEND=">=sys-apps/sed-4" src_unpack() { unpack ${A} sed -i 's:CFLAGS = :# CFLAGS = :' ${S}/Makefile - sed -i "s:CC = gcc:CC = ${CC}:" ${S}/Makefile + sed -i "s:CC = gcc:CC = $(tc-getCC):" ${S}/Makefile } src_compile() { |