diff options
author | Olivier Crête <tester@gentoo.org> | 2007-12-02 18:12:49 +0000 |
---|---|---|
committer | Olivier Crête <tester@gentoo.org> | 2007-12-02 18:12:49 +0000 |
commit | 257f620258ba5579a8cb3be55c38b532ed36640a (patch) | |
tree | 2f21c68df8059fddedeb72d5173a68ff6edff152 /app-dicts/verbiste/verbiste-0.1.21.ebuild | |
parent | Version bump, using cmake-utils. (diff) | |
download | gentoo-2-257f620258ba5579a8cb3be55c38b532ed36640a.tar.gz gentoo-2-257f620258ba5579a8cb3be55c38b532ed36640a.tar.bz2 gentoo-2-257f620258ba5579a8cb3be55c38b532ed36640a.zip |
New version
(Portage version: 2.1.3.19)
Diffstat (limited to 'app-dicts/verbiste/verbiste-0.1.21.ebuild')
-rw-r--r-- | app-dicts/verbiste/verbiste-0.1.21.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/app-dicts/verbiste/verbiste-0.1.21.ebuild b/app-dicts/verbiste/verbiste-0.1.21.ebuild new file mode 100644 index 000000000000..de7c2ec236e2 --- /dev/null +++ b/app-dicts/verbiste/verbiste-0.1.21.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/verbiste/verbiste-0.1.21.ebuild,v 1.1 2007/12/02 18:12:48 tester Exp $ + +inherit autotools eutils + +DESCRIPTION="French conjugation system" +HOMEPAGE="http://sarrazip.com/dev/verbiste.html" +SRC_URI="http://sarrazip.com/dev/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~x86" + +IUSE="gnome gtk" + +RDEPEND=">=dev-libs/libxml2-2.4.0 + gtk? ( >=x11-libs/gtk+-2.6 ) + gnome? ( >=gnome-base/gnome-panel-2.0 + >=gnome-base/libgnomeui-2.0 )" + +DEPEND="${RDEPEND}" + +#tests fails +RESTRICT=test + +src_compile() { + econf \ + $(use_with gtk gtk-app) \ + $(use_with gnome gnome-app) \ + $(use_with gnome gnome-applet) || die "econf failed" + emake || die "emake failed" +} + +src_install() { + make install DESTDIR="${D}" || die "can't install" + dodoc AUTHORS ChangeLog HACKING LISEZMOI NEWS README THANKS TODO +} |