diff options
author | Christoph Mende <angelos@gentoo.org> | 2011-03-28 17:47:29 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2011-03-28 17:47:29 +0000 |
commit | 41c5bf869b3c42aa237822b4596557d67f804531 (patch) | |
tree | d09cca3211f4d9c6d86662a001c855da11313816 /x11-misc/bbrun | |
parent | Remove entry for bind/bind-tools 9.4.x since it has been removed from tree (diff) | |
download | gentoo-2-41c5bf869b3c42aa237822b4596557d67f804531.tar.gz gentoo-2-41c5bf869b3c42aa237822b4596557d67f804531.tar.bz2 gentoo-2-41c5bf869b3c42aa237822b4596557d67f804531.zip |
Fixed gtk+ dep and cleanup
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/bbrun')
-rw-r--r-- | x11-misc/bbrun/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/bbrun/bbrun-1.6.ebuild | 15 |
2 files changed, 12 insertions, 10 deletions
diff --git a/x11-misc/bbrun/ChangeLog b/x11-misc/bbrun/ChangeLog index de909e5d3a83..865d7de361d1 100644 --- a/x11-misc/bbrun/ChangeLog +++ b/x11-misc/bbrun/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/bbrun -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbrun/ChangeLog,v 1.22 2010/05/28 17:28:42 xarthisius Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbrun/ChangeLog,v 1.23 2011/03/28 17:47:29 angelos Exp $ + + 28 Mar 2011; Christoph Mende <angelos@gentoo.org> bbrun-1.6.ebuild: + Fixed gtk+ dep and cleanup 28 May 2010; Kacper Kowalik <xarthisius@gentoo.org> bbrun-1.6.ebuild, +files/bbrun-1.6-respectflags.patch: diff --git a/x11-misc/bbrun/bbrun-1.6.ebuild b/x11-misc/bbrun/bbrun-1.6.ebuild index b66d457f9bda..c3829162a9cd 100644 --- a/x11-misc/bbrun/bbrun-1.6.ebuild +++ b/x11-misc/bbrun/bbrun-1.6.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbrun/bbrun-1.6.ebuild,v 1.8 2010/05/28 17:28:42 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbrun/bbrun-1.6.ebuild,v 1.9 2011/03/28 17:47:29 angelos Exp $ +EAPI=3 inherit eutils multilib toolchain-funcs DESCRIPTION="blackbox program execution dialog box" @@ -13,16 +14,14 @@ SLOT="0" KEYWORDS="amd64 ppc sparc x86" IUSE="" -RDEPEND=">=x11-libs/gtk+-2" +RDEPEND="x11-libs/gtk+:2" DEPEND="${RDEPEND} x11-libs/libXpm dev-util/pkgconfig" S=${WORKDIR}/${P}/${PN} -src_unpack() { - unpack ${A} - cd "${S}" +src_prepare() { epatch "${FILESDIR}"/${P}-respectflags.patch } @@ -32,6 +31,6 @@ src_compile() { } src_install () { - dobin ${PN} - dodoc ../{Changelog,README} + dobin ${PN} || die + dodoc ../{Changelog,README} || die } |