diff options
author | 2008-02-13 08:26:35 +0000 | |
---|---|---|
committer | 2008-02-13 08:26:35 +0000 | |
commit | b301849599ccec1ef147130b4550060394984a8a (patch) | |
tree | fde8580b0d04f366502e7dae191e8a36dac28f1f /dev-libs/dclog/dclog-1.1.1.ebuild | |
parent | stable x86, bug 204265 (diff) | |
download | gentoo-2-b301849599ccec1ef147130b4550060394984a8a.tar.gz gentoo-2-b301849599ccec1ef147130b4550060394984a8a.tar.bz2 gentoo-2-b301849599ccec1ef147130b4550060394984a8a.zip |
use emake instead of pure make; quote variable; remove GCC from DEPEND
(Portage version: 2.1.3.19)
Diffstat (limited to 'dev-libs/dclog/dclog-1.1.1.ebuild')
-rw-r--r-- | dev-libs/dclog/dclog-1.1.1.ebuild | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/dev-libs/dclog/dclog-1.1.1.ebuild b/dev-libs/dclog/dclog-1.1.1.ebuild index 39645eb27f80..7291bc1cf4e4 100644 --- a/dev-libs/dclog/dclog-1.1.1.ebuild +++ b/dev-libs/dclog/dclog-1.1.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/dclog/dclog-1.1.1.ebuild,v 1.2 2007/07/02 14:52:06 peper Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/dclog/dclog-1.1.1.ebuild,v 1.3 2008/02/13 08:26:35 opfer Exp $ DESCRIPTION="A logging library for C/C++ programs" HOMEPAGE="http://sourceforge.net/projects/dclog/" @@ -13,14 +13,12 @@ KEYWORDS="~x86" IUSE="" RESTRICT="mirror" -DEPEND=">=sys-devel/gcc-2.95" - src_compile() { - make all + emake all } src_install() { - make DESTDIR=${D} PREFIX=/usr install || die "install failed" + emake DESTDIR="${D}" PREFIX=/usr install || die "install failed" dodoc VERSION dohtml docs/html/* } |