diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-28 05:45:24 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-28 05:45:24 +0000 |
commit | 8a14cafe6eaaf0758090bd49e18c47105e5caa03 (patch) | |
tree | b6c6050aeeb4806f90acecc48626c3cc521bfd4c /app-text/vlna | |
parent | Fixed libmustux dependency, see bug #49215 (diff) | |
download | historical-8a14cafe6eaaf0758090bd49e18c47105e5caa03.tar.gz historical-8a14cafe6eaaf0758090bd49e18c47105e5caa03.tar.bz2 historical-8a14cafe6eaaf0758090bd49e18c47105e5caa03.zip |
dont use $CC
Diffstat (limited to 'app-text/vlna')
-rw-r--r-- | app-text/vlna/vlna-1.2.ebuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app-text/vlna/vlna-1.2.ebuild b/app-text/vlna/vlna-1.2.ebuild index 3aec69c971c0..9b9e3d665784 100644 --- a/app-text/vlna/vlna-1.2.ebuild +++ b/app-text/vlna/vlna-1.2.ebuild @@ -1,27 +1,27 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/vlna/vlna-1.2.ebuild,v 1.1 2004/02/26 19:38:39 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/vlna/vlna-1.2.ebuild,v 1.2 2004/04/28 05:45:24 vapier Exp $ + +inherit gcc DESCRIPTION="Add nonbreakable spaces after some prepositions in Czech texts" HOMEPAGE="http://math.feld.cvut.cz/olsak/cstex/" SRC_URI="ftp://math.feld.cvut.cz/pub/olsak/vlna/${P}.tar.gz" -KEYWORDS="~x86" -SLOT="0" LICENSE="Artistic" +SLOT="0" +KEYWORDS="~x86" IUSE="" DEPEND="virtual/glibc" -S="${WORKDIR}/${PN}" +S=${WORKDIR}/${PN} src_compile() { - - emake CC="${CC}" CFLAGS="${CFLAGS}" || die "make failed" + emake CC="$(gcc-getCC)" CFLAGS="${CFLAGS}" || die "make failed" } src_install() { - make DESTDIR=${D} \ BINDIR=${D}/usr/bin \ MANDIR=${D}/usr/share/man/man1 \ |