mirror of
https://github.com/gryf/gryf-overlay.git
synced 2026-01-04 04:44:13 +01:00
41 lines
967 B
Bash
41 lines
967 B
Bash
# Copyright 1999-2005 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-misc/gtktalog/gtktalog-1.0.3.ebuild,v 1.6 2005/01/01 15:06:02 eradicator Exp $
|
|
|
|
DESCRIPTION="The GTK disk catalog"
|
|
HOMEPAGE="http://www.freesoftware.fsf.org/gtktalog"
|
|
SRC_URI="http://savannah.nongnu.org/download/${PN}/${PN}.pkg/${PV}/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="x86"
|
|
IUSE="nls"
|
|
|
|
RDEPEND="=x11-libs/gtk+-1.2*
|
|
>=gnome-base/gnome-libs-1.4.1.2-r1
|
|
>=sys-libs/zlib-1.1.4"
|
|
DEPEND="${RDEPEND}
|
|
nls? ( sys-devel/gettext )"
|
|
|
|
src_compile() {
|
|
econf \
|
|
--enable-htmltitle \
|
|
--enable-mp3info \
|
|
--enable-aviinfo \
|
|
--enable-mpeginfo \
|
|
--enable-modinfo \
|
|
--enable-ogginfo \
|
|
--enable-catalog2 \
|
|
--enable-catalog3 \
|
|
--enable-mpgtx \
|
|
--enable-tcprobe \
|
|
`use_enable nls` \
|
|
|| die "econf failed"
|
|
emake || die
|
|
}
|
|
|
|
src_install() {
|
|
einstall || die
|
|
dodoc AUTHORS BUGS ChangeLog NEWS README TODO
|
|
}
|