summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2002-11-12 06:50:17 +0000
committerMike Frysinger <vapier@gentoo.org>2002-11-12 06:50:17 +0000
commitcab32fc188f7641fd941dbc320071b7d4856f893 (patch)
tree969ba9f1d3481288080c1a3fe6adea7183ce1f36 /net-misc
parentRemoved RDEPEND=${DEPEND} (diff)
downloadhistorical-cab32fc188f7641fd941dbc320071b7d4856f893.tar.gz
historical-cab32fc188f7641fd941dbc320071b7d4856f893.tar.bz2
historical-cab32fc188f7641fd941dbc320071b7d4856f893.zip
Removed RDEPEND=${DEPEND}
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/bidwatcher/bidwatcher-1.3.3.ebuild27
1 files changed, 10 insertions, 17 deletions
diff --git a/net-misc/bidwatcher/bidwatcher-1.3.3.ebuild b/net-misc/bidwatcher/bidwatcher-1.3.3.ebuild
index 3fbaa7a441ad..2cbfce51ca7f 100644
--- a/net-misc/bidwatcher/bidwatcher-1.3.3.ebuild
+++ b/net-misc/bidwatcher/bidwatcher-1.3.3.ebuild
@@ -1,32 +1,25 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/bidwatcher/bidwatcher-1.3.3.ebuild,v 1.4 2002/08/14 12:08:07 murphy Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/bidwatcher/bidwatcher-1.3.3.ebuild,v 1.5 2002/11/12 06:50:17 vapier Exp $
-S=${WORKDIR}/${P}
DESCRIPTION="eBay auction watcher and snipe agent"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://bidwatcher.sourceforge.net/"
-DEPEND="virtual/glibc
- =x11-libs/gtk+-1.2*
- =dev-libs/glib-1.2*"
-RDEPEND=${DEPEND}
-
KEYWORDS="x86 sparc sparc64"
LICENSE="GPL-2"
SLOT="0"
-src_compile() {
- ./configure \
- --build=${CHOST} \
- --prefix=/usr \
- --mandir=/usr/share/man \
- --infodir=/usr/share/info || die "./configure failed"
+DEPEND="virtual/glibc
+ =x11-libs/gtk+-1.2*
+ =dev-libs/glib-1.2*"
- emake || die
+src_compile() {
+ econf
+ emake || die "emake failed"
}
-src_install () {
- make DESTDIR=${D} install || die
- dodoc quick_start.html README COPYING NEWS AUTHORS ChangeLog TODO
+src_install() {
+ make DESTDIR=${D} install || die "make install failed"
+ dodoc quick_start.html README COPYING NEWS AUTHORS ChangeLog TODO
}