blob: 16bca7ff340dbcbc1393977925b504b0488ab2dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# 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.4 2002/11/30 20:46:48 vapier Exp $
MY_P=${P/_/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="The GTK disk catalog."
SRC_URI="http://freesoftware.fsf.org/download/gtktalog/gtktalog/sources/${MY_P}.tar.bz2"
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 \
--enable-aviinfo \
--enable-mpeginfo \
--enable-modinfo \
--enable-ogginfo \
--enable-catalog2 \
--enable-catalog3 \
${myconf}
emake || die
}
src_install() {
einstall
dodoc AUTHORS BUGS COPYING ChangeLog NEWS README TODO
}
|