diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2008-03-02 20:17:59 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2008-03-02 20:17:59 +0000 |
commit | 358cb28f7f89bb56c1f4a23fcda2edb68f39c2fc (patch) | |
tree | 173cf21a39231f6ad19e1590dfc9bc4188e9b6bd /app-misc | |
parent | x86 stable, bug #211211 (diff) | |
download | gentoo-2-358cb28f7f89bb56c1f4a23fcda2edb68f39c2fc.tar.gz gentoo-2-358cb28f7f89bb56c1f4a23fcda2edb68f39c2fc.tar.bz2 gentoo-2-358cb28f7f89bb56c1f4a23fcda2edb68f39c2fc.zip |
Keyword ~mips. Fix quoting on ${A} and use emake install.
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/hal-info/ChangeLog | 5 | ||||
-rw-r--r-- | app-misc/hal-info/hal-info-20071030.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/app-misc/hal-info/ChangeLog b/app-misc/hal-info/ChangeLog index b4fd80f07288..d165433c2483 100644 --- a/app-misc/hal-info/ChangeLog +++ b/app-misc/hal-info/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-misc/hal-info # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/hal-info/ChangeLog,v 1.26 2008/01/10 18:04:00 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/hal-info/ChangeLog,v 1.27 2008/03/02 20:17:59 dirtyepic Exp $ + + 02 Mar 2008; Ryan Hill <dirtyepic@gentoo.org> hal-info-20071030.ebuild: + Keyword ~mips. Fix quoting on ${A} and use emake install. 10 Jan 2008; Jeroen Roovers <jer@gentoo.org> hal-info-20071011.ebuild, hal-info-20071030.ebuild: diff --git a/app-misc/hal-info/hal-info-20071030.ebuild b/app-misc/hal-info/hal-info-20071030.ebuild index 81d090b0321d..e9823804cd5e 100644 --- a/app-misc/hal-info/hal-info-20071030.ebuild +++ b/app-misc/hal-info/hal-info-20071030.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/hal-info/hal-info-20071030.ebuild,v 1.2 2008/01/10 18:04:00 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/hal-info/hal-info-20071030.ebuild,v 1.3 2008/03/02 20:17:59 dirtyepic Exp $ inherit eutils @@ -10,14 +10,14 @@ SRC_URI="http://hal.freedesktop.org/releases/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~hppa ~x86" +KEYWORDS="~amd64 ~hppa ~mips ~x86" IUSE="" RDEPEND=">=sys-apps/hal-0.5.10" DEPEND="${RDEPEND}" src_unpack() { - unpack "${A}" + unpack ${A} cd "${S}" epatch "${FILESDIR}/01_dell_cdrom_nopoll.patch" @@ -31,5 +31,5 @@ src_compile() { } src_install() { - make DESTDIR="${D}" install || die "install failed." + emake DESTDIR="${D}" install || die "install failed." } |