summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2002-11-30 20:46:48 +0000
committerMike Frysinger <vapier@gentoo.org>2002-11-30 20:46:48 +0000
commite25430b28f81a63b66ce09678a68c52939b69d27 (patch)
tree3022da749dea1ba35b690004e4ea1f4d84cadd7f /app-misc/gtktalog
parentChanged src_install () to src_install() (diff)
downloadgentoo-2-e25430b28f81a63b66ce09678a68c52939b69d27.tar.gz
gentoo-2-e25430b28f81a63b66ce09678a68c52939b69d27.tar.bz2
gentoo-2-e25430b28f81a63b66ce09678a68c52939b69d27.zip
Changed einstall||die to einstall
Diffstat (limited to 'app-misc/gtktalog')
-rw-r--r--app-misc/gtktalog/gtktalog-1.0_rc2.ebuild18
1 files changed, 5 insertions, 13 deletions
diff --git a/app-misc/gtktalog/gtktalog-1.0_rc2.ebuild b/app-misc/gtktalog/gtktalog-1.0_rc2.ebuild
index 03d3af990e29..16bca7ff340d 100644
--- a/app-misc/gtktalog/gtktalog-1.0_rc2.ebuild
+++ b/app-misc/gtktalog/gtktalog-1.0_rc2.ebuild
@@ -1,11 +1,8 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/gtktalog/gtktalog-1.0_rc2.ebuild,v 1.3 2002/10/05 05:39:09 drobbins Exp $
-
-IUSE="nls"
+# $Header: /var/cvsroot/gentoo-x86/app-misc/gtktalog/gtktalog-1.0_rc2.ebuild,v 1.4 2002/11/30 20:46:48 vapier Exp $
MY_P=${P/_/}
-
S=${WORKDIR}/${MY_P}
DESCRIPTION="The GTK disk catalog."
@@ -15,18 +12,16 @@ HOMEPAGE="http://www.freesoftware.fsf.org/gtktalog"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
+IUSE="nls"
DEPEND="=x11-libs/gtk+-1.2*
>=gnome-base/gnome-libs-1.4.1.2-r1
>=sys-libs/zlib-1.1.4"
-
RDEPEND="nls? ( sys-devel/gettext )"
src_compile() {
local myconf
-
use nls || myconf="--disable-nls"
-
econf \
--enable-htmltitle \
--enable-mp3info \
@@ -36,14 +31,11 @@ src_compile() {
--enable-ogginfo \
--enable-catalog2 \
--enable-catalog3 \
- ${myconf} || die
+ ${myconf}
emake || die
}
-src_install () {
- # DESTDIR does not work for mo-files
-
- einstall || die
-
+src_install() {
+ einstall
dodoc AUTHORS BUGS COPYING ChangeLog NEWS README TODO
}