diff options
author | Alin Năstac <mrness@gentoo.org> | 2005-05-16 17:07:12 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2005-05-16 17:07:12 +0000 |
commit | 64d678fd875b87e625f6122a5222740242b6ae04 (patch) | |
tree | cbca06dea7fb08c81c01296ea57c0cb0238f52ad /net-misc/br2684ctl | |
parent | Version bump. Switched from .tar.gz to .tar.bz2. Use functions from versionat... (diff) | |
download | historical-64d678fd875b87e625f6122a5222740242b6ae04.tar.gz historical-64d678fd875b87e625f6122a5222740242b6ae04.tar.bz2 historical-64d678fd875b87e625f6122a5222740242b6ae04.zip |
gcc.eclass -> toolchains-funcs.eclass; x86
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'net-misc/br2684ctl')
-rw-r--r-- | net-misc/br2684ctl/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/br2684ctl/Manifest | 14 | ||||
-rw-r--r-- | net-misc/br2684ctl/br2684ctl-20040226.ebuild | 11 |
3 files changed, 23 insertions, 8 deletions
diff --git a/net-misc/br2684ctl/ChangeLog b/net-misc/br2684ctl/ChangeLog index 8a5ef7fea8c8..5b215dab6e34 100644 --- a/net-misc/br2684ctl/ChangeLog +++ b/net-misc/br2684ctl/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-misc/br2684ctl # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/br2684ctl/ChangeLog,v 1.2 2005/05/10 11:29:46 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/br2684ctl/ChangeLog,v 1.3 2005/05/16 17:07:12 mrness Exp $ + + 16 May 2005; Alin Nastac <mrness@gentoo.org> br2684ctl-20040226.ebuild: + Replace usage of obsolete gcc.eclass with toolchains-funcs.eclass (#92745). + Stable on x86. 10 May 2005; David Holm <dholm@gentoo.org> br2684ctl-20040226.ebuild: Added to ~ppc. diff --git a/net-misc/br2684ctl/Manifest b/net-misc/br2684ctl/Manifest index b48dd471cc78..dd1544fffae4 100644 --- a/net-misc/br2684ctl/Manifest +++ b/net-misc/br2684ctl/Manifest @@ -1,4 +1,14 @@ -MD5 f57f03a8eeeea306c8cb33114c4fa946 ChangeLog 516 -MD5 eb2a2c3e4941da8c3f996aab59318d31 br2684ctl-20040226.ebuild 2062 +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 40fd6947e553c291a00ac77d16b1cfde ChangeLog 687 +MD5 eb842f7343763ea17f3b3a68cc6f8e26 br2684ctl-20040226.ebuild 2091 MD5 28b878e1053bd4bcaa65232f7ad5df2a metadata.xml 355 MD5 e21700859a4e2c94f0641e6c31677b91 files/digest-br2684ctl-20040226 145 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.1 (GNU/Linux) + +iD8DBQFCiNNUjiC39V7gKu0RAqfdAJ49z8XAImP2TYWNNTgMsuT8Oi6A8ACeMxzF +Nrx3yNSIxy8uuGN81PxPqsU= +=DW9K +-----END PGP SIGNATURE----- diff --git a/net-misc/br2684ctl/br2684ctl-20040226.ebuild b/net-misc/br2684ctl/br2684ctl-20040226.ebuild index 9bc8f500a7ec..2434326c8f63 100644 --- a/net-misc/br2684ctl/br2684ctl-20040226.ebuild +++ b/net-misc/br2684ctl/br2684ctl-20040226.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/br2684ctl/br2684ctl-20040226.ebuild,v 1.3 2005/05/10 11:29:46 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/br2684ctl/br2684ctl-20040226.ebuild,v 1.4 2005/05/16 17:07:12 mrness Exp $ -inherit gcc eutils +inherit eutils toolchain-funcs DEBIANPKG_TARBALL="${PN}_${PV}.orig.tar.gz" DEBIANPKG_PATCH="${PN}_${PV}-1.diff.gz" @@ -15,7 +15,7 @@ SRC_URI="${DEBIANPKG_BASE}/${DEBIANPKG_TARBALL} LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86 ~ppc" +KEYWORDS="x86 ~ppc" IUSE="" RDEPEND=">=net-dialup/linux-atm-2.4.1" @@ -31,8 +31,9 @@ src_unpack() { } src_compile() { - echo $(gcc-getCC) ${CFLAGS} -latm ${PN}.c -o ${PN} - $(gcc-getCC) ${CFLAGS} -latm ${PN}.c -o ${PN} || die "Failed to compile!" + local MY_CC=$(tc-getCC) + echo ${MY_CC} ${CFLAGS} -latm ${PN}.c -o ${PN} + ${MY_CC} ${CFLAGS} -latm ${PN}.c -o ${PN} || die "Failed to compile!" } src_install() { |