diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-04-16 23:08:26 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-04-16 23:08:26 +0000 |
commit | 9bd4176bd2ed7762cfd9df3e9248c63cddc74aa9 (patch) | |
tree | b6eb7e29d33d0ca85459c17d0f46d01b20e72763 /app-portage | |
parent | (Portage version: 2.0.51.19) (Manifest recommit) (diff) | |
download | gentoo-2-9bd4176bd2ed7762cfd9df3e9248c63cddc74aa9.tar.gz gentoo-2-9bd4176bd2ed7762cfd9df3e9248c63cddc74aa9.tar.bz2 gentoo-2-9bd4176bd2ed7762cfd9df3e9248c63cddc74aa9.zip |
ia64 stable #89308
(Portage version: 2.0.51.19)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/eix/eix-0.2.2.ebuild | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/app-portage/eix/eix-0.2.2.ebuild b/app-portage/eix/eix-0.2.2.ebuild index 4aaa1850347d..321951a65212 100644 --- a/app-portage/eix/eix-0.2.2.ebuild +++ b/app-portage/eix/eix-0.2.2.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/app-portage/eix/eix-0.2.2.ebuild,v 1.5 2005/04/11 00:24:04 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.2.2.ebuild,v 1.6 2005/04/16 23:08:26 vapier Exp $ inherit eutils flag-o-matic bash-completion @@ -10,27 +10,24 @@ SRC_URI="mirror://sourceforge/eix/${PN}-${PV}.tar.bz2 http://frexx.de/eix/${PN}- LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86 amd64 ~alpha ~ia64 ~ppc sparc" +KEYWORDS="~alpha amd64 ia64 ~ppc sparc x86" IUSE="" -DEPEND="sys-devel/gcc - virtual/libc" -RDEPEND="sys-apps/portage - virtual/libc" +DEPEND="sys-apps/portage" src_compile() { - epatch ${FILESDIR}/0.2.2-incorrect-masks.patch + epatch "${FILESDIR}"/0.2.2-incorrect-masks.patch - aclocal - libtoolize --force --copy - autoconf + aclocal || die "aclocal" + libtoolize --force --copy || die "libtoolize" + autoconf || die "autoconf" econf || die "configure failed" emake || die "emake failed" } src_install() { - make DESTDIR=${D} install || die "make install failed" + make DESTDIR="${D}" install || die "make install failed" dobashcompletion contrib/eix.bash-completion ${PN} } |