diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-07-21 14:30:54 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-07-21 14:30:54 +0000 |
commit | 743546fd62f49f81c19656728afc6a763774c252 (patch) | |
tree | e11a1f1043eada84deb26265a9f59d2d1a0c82b7 /x11-misc/bblaunch | |
parent | fix quoting (diff) | |
download | gentoo-2-743546fd62f49f81c19656728afc6a763774c252.tar.gz gentoo-2-743546fd62f49f81c19656728afc6a763774c252.tar.bz2 gentoo-2-743546fd62f49f81c19656728afc6a763774c252.zip |
move epatch to src_prepare, fix quoting
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/bblaunch')
-rw-r--r-- | x11-misc/bblaunch/bblaunch-0.0.3.ebuild | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/x11-misc/bblaunch/bblaunch-0.0.3.ebuild b/x11-misc/bblaunch/bblaunch-0.0.3.ebuild index 8734ea8b08ea..5816f31630fd 100644 --- a/x11-misc/bblaunch/bblaunch-0.0.3.ebuild +++ b/x11-misc/bblaunch/bblaunch-0.0.3.ebuild @@ -1,26 +1,26 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/bblaunch/bblaunch-0.0.3.ebuild,v 1.11 2007/08/02 13:48:29 uberlord Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/bblaunch/bblaunch-0.0.3.ebuild,v 1.12 2010/07/21 14:30:54 ssuominen Exp $ +EAPI=2 inherit eutils -IUSE="" DESCRIPTION="An application launcher for Blackbox type window managers" SRC_URI="http://www.stud.ifi.uio.no/~steingrd/${P}.tar.gz" HOMEPAGE="http://blackboxwm.sourceforge.net/" + LICENSE="GPL-2" SLOT="0" KEYWORDS="ppc x86 ~x86-fbsd" +IUSE="" DEPEND="virtual/blackbox" -src_compile () { - epatch ${FILESDIR}/${P}.patch - econf || die - emake || die +src_prepare() { + epatch "${FILESDIR}"/${P}.patch } -src_install () { - make DESTDIR=${D} install || die +src_install() { + emake DESTDIR="${D}" install || die dodoc README CHANGELOG AUTHORS } |