diff options
author | 2008-09-23 02:08:18 +0000 | |
---|---|---|
committer | 2008-09-23 02:08:18 +0000 | |
commit | a2678f8c429f72f9323232536ccd619fdf3c6d5d (patch) | |
tree | db79b85ac67ed1fa474edf9238047af331575d36 /net-misc/emirror | |
parent | Added patch to fix insecure tempfile handling (see bug #235804). Removed ebui... (diff) | |
download | gentoo-2-a2678f8c429f72f9323232536ccd619fdf3c6d5d.tar.gz gentoo-2-a2678f8c429f72f9323232536ccd619fdf3c6d5d.tar.bz2 gentoo-2-a2678f8c429f72f9323232536ccd619fdf3c6d5d.zip |
Keyword ~amd64, fix HOMEPAGE url; use econf and emake instead of ./configure and make
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-misc/emirror')
-rw-r--r-- | net-misc/emirror/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/emirror/emirror-2.1.21.ebuild | 27 |
2 files changed, 17 insertions, 18 deletions
diff --git a/net-misc/emirror/ChangeLog b/net-misc/emirror/ChangeLog index 4910e99d2c69..16b070b41bf6 100644 --- a/net-misc/emirror/ChangeLog +++ b/net-misc/emirror/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-misc/emirror -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/emirror/ChangeLog,v 1.9 2007/07/15 08:46:40 phreak Exp $ +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/emirror/ChangeLog,v 1.10 2008/09/23 02:08:18 cla Exp $ + + 23 Sep 2008; Dawid Węgliński <cla@gentoo.org> emirror-2.1.21.ebuild: + Keyword ~amd64, fix HOMEPAGE url; use econf and emake instead of ./configure + and make 15 Jul 2007; Christian Heim <phreak@gentoo.org> metadata.xml: Assigning to m-needed, as beu is being retired (#66608). diff --git a/net-misc/emirror/emirror-2.1.21.ebuild b/net-misc/emirror/emirror-2.1.21.ebuild index f7d2acaa0fd0..c9eaa4f7b16f 100644 --- a/net-misc/emirror/emirror-2.1.21.ebuild +++ b/net-misc/emirror/emirror-2.1.21.ebuild @@ -1,31 +1,26 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/emirror/emirror-2.1.21.ebuild,v 1.6 2006/12/11 08:01:23 beu Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/emirror/emirror-2.1.21.ebuild,v 1.7 2008/09/23 02:08:18 cla Exp $ DESCRIPTION="ECLiPt FTP mirroring tool" -HOMEPAGE="http://eclipt.uni-klu.ac.at/emirror.php" +HOMEPAGE="http://sourceforge.net/projects/emirror/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86 ~ppc" +KEYWORDS="~amd64 ~ppc x86" IUSE="" src_compile() { - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ - || die "configure problem" - - emake || die "compile problem" + econf || die "econf failed" + emake || die "emake failed" } src_install() { - make \ - prefix=${D}/usr \ - mandir=${D}/usr/share/man/man1 \ - sysconfdir=${D}/etc \ - install || die "install problem" + emake \ + prefix="${D}"/usr \ + mandir="${D}"/usr/share/man/man1 \ + sysconfdir="${D}"/etc \ + install || die "emake install failed" dodoc doc/* } |