blob: 24f8b993c99377ce35577156a81ac224f343632a (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/verbiste/verbiste-0.1.9.ebuild,v 1.5 2004/11/30 21:08:43 swegener Exp $
inherit eutils
DESCRIPTION="French conjugation system"
HOMEPAGE="http://www3.sympatico.ca/sarrazip/dev/verbiste.html"
SRC_URI="http://www3.sympatico.ca/sarrazip/dev/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc"
IUSE="gnome"
DEPEND="dev-libs/libxml2
gnome? ( >=gnome-base/gnome-panel-2.0
>=gnome-base/libgnomeui-2.0 )"
src_compile() {
cd ${S}
econf $(use_with gnome) || die
emake || die
}
src_install() {
make install DESTDIR=${D}
dodoc AUTHORS ChangeLog HACKING LISEZMOI NEWS README THANKS TODO
if ! use gnome; then
rm ${D}/usr/share/applications/verbiste.desktop
fi
}
|