diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-02-18 00:37:53 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-02-18 00:37:53 +0000 |
commit | 8efdc7345b115ab882a3171fc1de4bc236c1fcaf (patch) | |
tree | 56af50bdfd8342a1690c36a146898f654272c8c0 | |
parent | Multilib cleanup. (diff) | |
download | historical-8efdc7345b115ab882a3171fc1de4bc236c1fcaf.tar.gz historical-8efdc7345b115ab882a3171fc1de4bc236c1fcaf.tar.bz2 historical-8efdc7345b115ab882a3171fc1de4bc236c1fcaf.zip |
fix typo (bug #82319); tidy
Package-Manager: portage-2.0.51-r15
-rw-r--r-- | net-misc/axel/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/axel/Manifest | 14 | ||||
-rw-r--r-- | net-misc/axel/axel-1.0a.ebuild | 16 |
3 files changed, 13 insertions, 22 deletions
diff --git a/net-misc/axel/ChangeLog b/net-misc/axel/ChangeLog index fa553e106866..7278535d2735 100644 --- a/net-misc/axel/ChangeLog +++ b/net-misc/axel/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/axel # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/axel/ChangeLog,v 1.13 2005/02/16 18:53:27 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/axel/ChangeLog,v 1.14 2005/02/18 00:37:53 mr_bones_ Exp $ + + 17 Feb 2005; Michael Sterrett <mr_bones_@gentoo.org> axel-1.0a.ebuild: + fix typo (bug #82319); tidy 16 Feb 2005; Marcus D. Hanwell <cryos@gentoo.org> axel-1.0a.ebuild: Marked ~amd64, closes bug 82236. diff --git a/net-misc/axel/Manifest b/net-misc/axel/Manifest index 5ebb3c784950..f5e233f2d048 100644 --- a/net-misc/axel/Manifest +++ b/net-misc/axel/Manifest @@ -1,13 +1,3 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 7076c54e17c8e115c832c2e0f76ca564 axel-1.0a.ebuild 780 -MD5 57542f803464488b8f727a6d3aeecfd3 ChangeLog 1378 +MD5 8492310374294d6522c91da4a1905b23 ChangeLog 1486 +MD5 4952ec43e23bf8d1ff82fb1906e65492 axel-1.0a.ebuild 750 MD5 c22097decf3dd805e61a9c46bba96f9b files/digest-axel-1.0a 60 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.2.6 (GNU/Linux) - -iD8DBQFCE5bIntT9W3vfTuoRAhu7AJ40HR74PpwN0hZJDj3psrR2LT9dGQCgplnQ -1Kfs1tClRQzN7M3cVrwJ/7k= -=uag6 ------END PGP SIGNATURE----- diff --git a/net-misc/axel/axel-1.0a.ebuild b/net-misc/axel/axel-1.0a.ebuild index 0f3dd2112e02..b8d01281978c 100644 --- a/net-misc/axel/axel-1.0a.ebuild +++ b/net-misc/axel/axel-1.0a.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/axel/axel-1.0a.ebuild,v 1.18 2005/02/16 18:53:27 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/axel/axel-1.0a.ebuild,v 1.19 2005/02/18 00:37:53 mr_bones_ Exp $ DESCRIPTION="light Unix download accelerator" HOMEPAGE="http://www.lintux.cx/axel.html" @@ -8,25 +8,23 @@ SRC_URI="http://www.lintux.cx/downloads/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86 sparc ppc ppc64 ppc-macos ~amd64" +KEYWORDS="~amd64 ppc ppc64 ppc-macos sparc x86" IUSE="debug" DEPEND="virtual/libc" src_compile() { - cd work/${P} local myconf + use debug && myconf="--debug=1 --strip=0" - ./configure \ - --prefix=/usr \ + econf \ --etcdir=/etc \ - --mandir=/usr/share/man \ ${myconf} \ || die - emake || die + emake || die "emake failed" } src_install() { - make DESTDIR=${D} install || die - dodoc API CHANGES COPYING CREDITS README axelrc.example + make DESTDIR="${D}" install || die "make install failed" + dodoc API CHANGES CREDITS README axelrc.example } |