summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <tester@gentoo.org>2004-06-27 01:35:20 +0000
committerOlivier CrĂȘte <tester@gentoo.org>2004-06-27 01:35:20 +0000
commit2c2c0f34cbc9328c759d91dd827d6097f34cf957 (patch)
tree21cb9d6ebd76fa4469456b6d71fba52a81500987 /app-dicts
parentStable x86. Added ~amd64. (diff)
downloadhistorical-2c2c0f34cbc9328c759d91dd827d6097f34cf957.tar.gz
historical-2c2c0f34cbc9328c759d91dd827d6097f34cf957.tar.bz2
historical-2c2c0f34cbc9328c759d91dd827d6097f34cf957.zip
adding app-dicts/verbiste
Diffstat (limited to 'app-dicts')
-rw-r--r--app-dicts/verbiste/ChangeLog9
-rw-r--r--app-dicts/verbiste/Manifest4
-rw-r--r--app-dicts/verbiste/files/digest-verbiste-0.1.91
-rw-r--r--app-dicts/verbiste/metadata.xml10
-rw-r--r--app-dicts/verbiste/verbiste-0.1.9.ebuild35
5 files changed, 59 insertions, 0 deletions
diff --git a/app-dicts/verbiste/ChangeLog b/app-dicts/verbiste/ChangeLog
new file mode 100644
index 000000000000..067a0ae41eb5
--- /dev/null
+++ b/app-dicts/verbiste/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for app-dicts/verbiste
+# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/verbiste/ChangeLog,v 1.1 2004/06/27 01:35:20 tester Exp $
+
+*verbiste-0.1.9 (27 Jun 2004)
+
+ 27 Jun 2004; <tester@gentoo.org> +metadata.xml, +verbiste-0.1.9.ebuild:
+ Initial import based on ebuild submitted by José Romildo Malaquias
+ <romildo@uber.com.br> in bug #47465
diff --git a/app-dicts/verbiste/Manifest b/app-dicts/verbiste/Manifest
new file mode 100644
index 000000000000..d4faab3314df
--- /dev/null
+++ b/app-dicts/verbiste/Manifest
@@ -0,0 +1,4 @@
+MD5 0df5accc497622c4490e507149f2714e ChangeLog 423
+MD5 021abcb0c095f08d99aa81b84836343f metadata.xml 321
+MD5 3793317f8c33235cd113234107424246 verbiste-0.1.9.ebuild 792
+MD5 239386925f7a534c57385d2cee01d1a1 files/digest-verbiste-0.1.9 66
diff --git a/app-dicts/verbiste/files/digest-verbiste-0.1.9 b/app-dicts/verbiste/files/digest-verbiste-0.1.9
new file mode 100644
index 000000000000..8a33f35a2de3
--- /dev/null
+++ b/app-dicts/verbiste/files/digest-verbiste-0.1.9
@@ -0,0 +1 @@
+MD5 9dfa748a93bf3ae3d0277f99f9da252b verbiste-0.1.9.tar.gz 548053
diff --git a/app-dicts/verbiste/metadata.xml b/app-dicts/verbiste/metadata.xml
new file mode 100644
index 000000000000..49de8647f55e
--- /dev/null
+++ b/app-dicts/verbiste/metadata.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>no-herd</herd>
+<maintainer>
+ <email>tester@gentoo.org</email>
+</maintainer>
+ <longdescription>French conjugation system including an option gnome front-end</longdescription>
+</pkgmetadata>
+
diff --git a/app-dicts/verbiste/verbiste-0.1.9.ebuild b/app-dicts/verbiste/verbiste-0.1.9.ebuild
new file mode 100644
index 000000000000..e81abdbbed5c
--- /dev/null
+++ b/app-dicts/verbiste/verbiste-0.1.9.ebuild
@@ -0,0 +1,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.1 2004/06/27 01:35:20 tester 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"
+
+IUSE="gnome"
+
+DEPEND="dev-libs/libxml2
+ gnome? ( >=gnome-base/gnome-panel-2.0
+ >=libgnomeui-2.0 )"
+
+src_compile() {
+ cd ${S}
+ econf $(use_with gnome) || die
+ emake || die
+}
+
+src_install() {
+ einstall
+ dodoc AUTHORS ChangeLog HACKING LISEZMOI NEWS README THANKS TODO
+
+ if ! use gnome; then
+ rm ${D}/usr/share/applications/verbiste.desktop
+ fi
+}
+