summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Jaroszyński <peper@gentoo.org>2008-01-23 20:22:25 +0000
committerPiotr Jaroszyński <peper@gentoo.org>2008-01-23 20:22:25 +0000
commit3fb4a3cb78fedea5c63ada63b5c2d00b3b79d891 (patch)
treede51190996f3fbcc45191998dcdf8f94cc7c6f10 /app-dicts/ydpdict
parentAdjust tntnet dependency, as vdr-live does not compile with tntnet-1.6.1 (diff)
downloadgentoo-2-3fb4a3cb78fedea5c63ada63b5c2d00b3b79d891.tar.gz
gentoo-2-3fb4a3cb78fedea5c63ada63b5c2d00b3b79d891.tar.bz2
gentoo-2-3fb4a3cb78fedea5c63ada63b5c2d00b3b79d891.zip
Add 0.99.3.
(Portage version: 2.1.4)
Diffstat (limited to 'app-dicts/ydpdict')
-rw-r--r--app-dicts/ydpdict/ChangeLog9
-rw-r--r--app-dicts/ydpdict/files/digest-ydpdict-0.99.33
-rw-r--r--app-dicts/ydpdict/ydpdict-0.99.3.ebuild44
3 files changed, 54 insertions, 2 deletions
diff --git a/app-dicts/ydpdict/ChangeLog b/app-dicts/ydpdict/ChangeLog
index 888e183e74c5..e1e2161d97e3 100644
--- a/app-dicts/ydpdict/ChangeLog
+++ b/app-dicts/ydpdict/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-dicts/ydpdict
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-dicts/ydpdict/ChangeLog,v 1.9 2007/02/26 21:09:54 peper Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/ydpdict/ChangeLog,v 1.10 2008/01/23 20:22:25 peper Exp $
+
+*ydpdict-0.99.3 (23 Jan 2008)
+
+ 23 Jan 2008; Piotr Jaroszyński <peper@gentoo.org> +ydpdict-0.99.3.ebuild:
+ Add 0.99.3.
*ydpdict-0.99.0 (26 Feb 2007)
diff --git a/app-dicts/ydpdict/files/digest-ydpdict-0.99.3 b/app-dicts/ydpdict/files/digest-ydpdict-0.99.3
new file mode 100644
index 000000000000..2d8e3eeffb0b
--- /dev/null
+++ b/app-dicts/ydpdict/files/digest-ydpdict-0.99.3
@@ -0,0 +1,3 @@
+MD5 53c22863165b08a75fba2e663533cff6 ydpdict-0.99.3.tar.gz 385985
+RMD160 f32b2a9226fd9758de29f04e9aae711732006e4d ydpdict-0.99.3.tar.gz 385985
+SHA256 bef364ea3f1d4bfb9b8d496c88a71815e3193f55a403716db4e176b587ebdec9 ydpdict-0.99.3.tar.gz 385985
diff --git a/app-dicts/ydpdict/ydpdict-0.99.3.ebuild b/app-dicts/ydpdict/ydpdict-0.99.3.ebuild
new file mode 100644
index 000000000000..638f5a76c186
--- /dev/null
+++ b/app-dicts/ydpdict/ydpdict-0.99.3.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/ydpdict/ydpdict-0.99.3.ebuild,v 1.1 2008/01/23 20:22:25 peper Exp $
+
+DESCRIPTION="Interface for the Collins Dictionary."
+HOMEPAGE="http://toxygen.net/ydpdict/"
+SRC_URI="http://toxygen.net/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="ao"
+
+RDEPEND="=app-dicts/libydpdict-${PV}*
+ ao? ( media-libs/libao )"
+
+DEPEND="${RDEPEND}
+ >=dev-util/pkgconfig-0.9.0"
+
+src_compile() {
+ econf \
+ $(use_with ao libao) \
+ || die "econf failed"
+
+ emake || die "emake failed"
+}
+
+src_install() {
+ dodir "/etc"
+ emake DESTDIR="${D}" install || die "emake install failed"
+
+ dodoc README
+}
+
+pkg_postinst() {
+ echo
+ elog "Note that to use this program you'll need the original Collins Dictionary"
+ elog "datafiles (dict100.*, dict101.*). These can be found in the Dabasase/"
+ elog "directory of the Windows version of the Collins dictionary. Once you obtain"
+ elog "the files, put them into /usr/share/ydpdict"
+ elog
+ elog "Some configuration options can be set in /etc/ydpdict.conf"
+ echo
+}