diff options
author | Christoph Mende <angelos@gentoo.org> | 2010-06-22 17:41:00 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2010-06-22 17:41:00 +0000 |
commit | 34afd13d744831de1f26e41ece0d50d4a3bb1bf9 (patch) | |
tree | 66a34319fdd719c80e0fcd5106c2a9f37ef45a22 /net-misc/corkscrew | |
parent | Fix mask for sci-libs/libgeda to cover all 1.4.3* versions (diff) | |
download | gentoo-2-34afd13d744831de1f26e41ece0d50d4a3bb1bf9.tar.gz gentoo-2-34afd13d744831de1f26e41ece0d50d4a3bb1bf9.tar.bz2 gentoo-2-34afd13d744831de1f26e41ece0d50d4a3bb1bf9.zip |
QA: Respect CC and use emake
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/corkscrew')
-rw-r--r-- | net-misc/corkscrew/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/corkscrew/corkscrew-2.0.ebuild | 15 |
2 files changed, 15 insertions, 5 deletions
diff --git a/net-misc/corkscrew/ChangeLog b/net-misc/corkscrew/ChangeLog index ea8488907fcd..2f8625a16627 100644 --- a/net-misc/corkscrew/ChangeLog +++ b/net-misc/corkscrew/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/corkscrew # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/corkscrew/ChangeLog,v 1.7 2010/05/28 14:10:54 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/corkscrew/ChangeLog,v 1.8 2010/06/22 17:41:00 angelos Exp $ + + 22 Jun 2010; Christoph Mende <angelos@gentoo.org> corkscrew-2.0.ebuild: + QA: Respect CC and use emake 28 May 2010; Torsten Veller <tove@gentoo.org> metadata.xml: Remove klieber from metadata.xml (#317393) diff --git a/net-misc/corkscrew/corkscrew-2.0.ebuild b/net-misc/corkscrew/corkscrew-2.0.ebuild index 3dc1d35501b6..24f2654ab58e 100644 --- a/net-misc/corkscrew/corkscrew-2.0.ebuild +++ b/net-misc/corkscrew/corkscrew-2.0.ebuild @@ -1,6 +1,9 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/corkscrew/corkscrew-2.0.ebuild,v 1.8 2007/01/21 20:55:04 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/corkscrew/corkscrew-2.0.ebuild,v 1.9 2010/06/22 17:41:00 angelos Exp $ + +EAPI=2 +inherit toolchain-funcs DESCRIPTION="Corkscrew is a tool for tunneling SSH through HTTP proxies." HOMEPAGE="http://www.agroman.net/corkscrew/" @@ -11,7 +14,11 @@ IUSE="" SLOT="0" SRC_URI="http://www.agroman.net/corkscrew/${P}.tar.gz" +src_compile() { + emake CC=$(tc-getCC) || die "emake failed" +} + src_install () { - make DESTDIR=${D} install || die - dodoc AUTHORS README TODO || die + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS README TODO || die "dodoc failed" } |