diff options
Diffstat (limited to 'x11-misc/bbrun/bbrun-1.4.ebuild')
-rw-r--r-- | x11-misc/bbrun/bbrun-1.4.ebuild | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/x11-misc/bbrun/bbrun-1.4.ebuild b/x11-misc/bbrun/bbrun-1.4.ebuild index 75c84c331cef..a60b7fa6ffa5 100644 --- a/x11-misc/bbrun/bbrun-1.4.ebuild +++ b/x11-misc/bbrun/bbrun-1.4.ebuild @@ -1,17 +1,17 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbrun/bbrun-1.4.ebuild,v 1.7 2004/08/14 14:56:26 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbrun/bbrun-1.4.ebuild,v 1.8 2005/01/08 08:52:45 ka0ttic Exp $ -IUSE="" DESCRIPTION="blackbox program execution dialog box" -SRC_URI="http://www.dwave.net/~jking/bbrun/${P}.tar.gz" -HOMEPAGE="http://www.dwave.net/~jking/bbrun/" +SRC_URI="http://www.darkops.net/${PN}/${P}.tar.gz" +HOMEPAGE="http://www.darkops.net/bbrun/" + LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ppc sparc" +IUSE="" -DEPEND="virtual/blackbox - =x11-libs/gtk+-1.2*" +DEPEND="=x11-libs/gtk+-1.2*" src_unpack() { unpack ${A} @@ -21,15 +21,11 @@ src_unpack() { } src_compile() { - cd ${S}/bbrun - emake || die - + emake || die "emake failed" } src_install () { - - dobin bbrun/bbrun + dobin bbrun/bbrun || die "failed to install bbrun" dodoc README COPYING - } |