summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-02-08 00:48:08 +0000
committerMike Frysinger <vapier@gentoo.org>2006-02-08 00:48:08 +0000
commitcb4cb585ac61ec0e6e9b8b9159154f59bd142426 (patch)
tree50deb78d4ba493b328373d033f8169d431e8810a /sys-apps
parenttouchups (diff)
downloadgentoo-2-cb4cb585ac61ec0e6e9b8b9159154f59bd142426.tar.gz
gentoo-2-cb4cb585ac61ec0e6e9b8b9159154f59bd142426.tar.bz2
gentoo-2-cb4cb585ac61ec0e6e9b8b9159154f59bd142426.zip
cleanup ebuild and fix gtk+ DEPEND #122019 by Daniel Drake
(Portage version: 2.1_pre4-r1)
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/gscanbus/gscanbus-0.7.1.ebuild21
1 files changed, 10 insertions, 11 deletions
diff --git a/sys-apps/gscanbus/gscanbus-0.7.1.ebuild b/sys-apps/gscanbus/gscanbus-0.7.1.ebuild
index 7aed0be98362..5688c520e1d7 100644
--- a/sys-apps/gscanbus/gscanbus-0.7.1.ebuild
+++ b/sys-apps/gscanbus/gscanbus-0.7.1.ebuild
@@ -1,31 +1,30 @@
-# Copyright 1999-2004 Gentoo Foundation
+# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/gscanbus/gscanbus-0.7.1.ebuild,v 1.7 2004/06/24 22:09:07 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/gscanbus/gscanbus-0.7.1.ebuild,v 1.8 2006/02/08 00:48:08 vapier Exp $
inherit eutils
-DESCRIPTION="gscanbus is a little bus scanning, testing and topology visualizing tool for the Linux IEEE1394 subsystem"
+DESCRIPTION="a little bus scanning, testing, and topology visualizing tool for the Linux IEEE1394 subsystem"
HOMEPAGE="http://gscanbus.berlios.de/"
SRC_URI="http://download.berlios.de/gscanbus/${P}.tgz"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
-KEYWORDS="~x86 ~sparc ppc ~amd64"
+KEYWORDS="~amd64 ppc ~sparc ~x86"
IUSE=""
DEPEND=">=sys-libs/libraw1394-0.9.0
- >=x11-libs/gtk+-1.2"
+ =x11-libs/gtk+-1.2*"
src_unpack() {
unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/gscanbus-0.71-gcc33.patch
+ cd "${S}"
+ epatch "${FILESDIR}"/gscanbus-0.71-gcc33.patch
}
src_install() {
- dobin gscanbus
- dodir /etc
- cp guid-resolv.conf oui-resolv.conf ${D}/etc
+ dobin gscanbus || die
+ insinto /etc
+ doins guid-resolv.conf oui-resolv.conf
dodoc README
-
}