blob: a1f8864fd6672ddbff0d7ea6bf000e9e66026fae (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/gwhere/gwhere-0.0.26.ebuild,v 1.1 2002/12/20 00:39:16 vapier Exp $
MY_P="${P/gw/GW}"
S="${WORKDIR}/${MY_P}"
SRC_URI="http://www.gwhere.org/download/${MY_P}.tar.gz"
HOMEPAGE="http://www.gwhere.org/"
DESCRIPTION="removable media cataloguer made with GTK+"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~alpha"
IUSE="nls"
DEPEND=">=x11-libs/gtk+-1.2
nls? ( sys-devel/gettext )"
src_compile() {
econf `use_enable nls` || die "econf failed"
emake || die "emake failed"
}
src_install() {
einstall || die "einstall failed"
dodoc AUTHORS BUGS ChangeLog NEWS README TODO
}
|