diff options
author | 2005-02-11 11:39:30 +0000 | |
---|---|---|
committer | 2005-02-11 11:39:30 +0000 | |
commit | ece52e906305bd0a1642f52334c47c25f68ac05f (patch) | |
tree | 5c481ac0d6045c97b546d61d41234e48bf551b57 /dev-libs/http-fetcher/http-fetcher-1.0.3.ebuild | |
parent | Version bump; keeping stable on x86 since previous stable version was broken. (diff) | |
download | historical-ece52e906305bd0a1642f52334c47c25f68ac05f.tar.gz historical-ece52e906305bd0a1642f52334c47c25f68ac05f.tar.bz2 historical-ece52e906305bd0a1642f52334c47c25f68ac05f.zip |
Version bump; 1.0.3 stable on x86. Tidy old ebuilds.
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'dev-libs/http-fetcher/http-fetcher-1.0.3.ebuild')
-rw-r--r-- | dev-libs/http-fetcher/http-fetcher-1.0.3.ebuild | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/dev-libs/http-fetcher/http-fetcher-1.0.3.ebuild b/dev-libs/http-fetcher/http-fetcher-1.0.3.ebuild index 78a3fbe6cc5a..708690b4935b 100644 --- a/dev-libs/http-fetcher/http-fetcher-1.0.3.ebuild +++ b/dev-libs/http-fetcher/http-fetcher-1.0.3.ebuild @@ -1,27 +1,23 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/http-fetcher/http-fetcher-1.0.3.ebuild,v 1.5 2004/07/02 04:42:46 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/http-fetcher/http-fetcher-1.0.3.ebuild,v 1.6 2005/02/11 11:39:29 ka0ttic Exp $ +MY_P="${P/-/_}" +S="${WORKDIR}/${MY_P}" DESCRIPTION="HTTP Fetcher is a small, robust, flexible library for downloading files via HTTP using the GET method." HOMEPAGE="http://http-fetcher.sourceforge.net" -SRC_URI="mirror://sourceforge/${PN}/${P/-/_}.tar.gz" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + RESTRICT="nomirror" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~x86 ~amd64 alpha ~ppc" +KEYWORDS="x86 ~amd64 alpha ~ppc" IUSE="" -DEPEND="virtual/libc" - -S=${WORKDIR}/${P/-/_} - -src_compile() { - econf || die - emake || die -} +RDEPEND="virtual/libc" src_install() { - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die "make install failed" dohtml -r docs/index.html docs/html dodoc README ChangeLog CREDITS INSTALL LICENSE } |