diff options
author | Michael Januszewski <spock@gentoo.org> | 2008-09-07 11:16:54 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2008-09-07 11:16:54 +0000 |
commit | 6d27e446ae14742602fdc3b2b875a7b9d9433a95 (patch) | |
tree | 8ebcc05400b26fee24b0231cf51335f22fbda067 /app-dicts | |
parent | Version bump. (diff) | |
download | gentoo-2-6d27e446ae14742602fdc3b2b875a7b9d9433a95.tar.gz gentoo-2-6d27e446ae14742602fdc3b2b875a7b9d9433a95.tar.bz2 gentoo-2-6d27e446ae14742602fdc3b2b875a7b9d9433a95.zip |
Version bump.
(Portage version: 2.2_rc8/cvs/Linux 2.6.27-rc5 x86_64)
Diffstat (limited to 'app-dicts')
-rw-r--r-- | app-dicts/ydpdict/ChangeLog | 7 | ||||
-rw-r--r-- | app-dicts/ydpdict/ydpdict-1.0.0.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/app-dicts/ydpdict/ChangeLog b/app-dicts/ydpdict/ChangeLog index 157884ad341c..64fe4822ebd9 100644 --- a/app-dicts/ydpdict/ChangeLog +++ b/app-dicts/ydpdict/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-dicts/ydpdict # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/ydpdict/ChangeLog,v 1.11 2008/08/27 22:43:50 cla Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/ydpdict/ChangeLog,v 1.12 2008/09/07 11:16:54 spock Exp $ + +*ydpdict-1.0.0 (07 Sep 2008) + + 07 Sep 2008; Michał Januszewski <spock@gentoo.org> +ydpdict-1.0.0.ebuild: + Version bump. 27 Aug 2008; Dawid Węgliński <cla@gentoo.org> ydpdict-0.99.3.ebuild: Stable on x86/amd64 (bug #209813) diff --git a/app-dicts/ydpdict/ydpdict-1.0.0.ebuild b/app-dicts/ydpdict/ydpdict-1.0.0.ebuild new file mode 100644 index 000000000000..48956e4b7297 --- /dev/null +++ b/app-dicts/ydpdict/ydpdict-1.0.0.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-1.0.0.ebuild,v 1.1 2008/09/07 11:16:54 spock 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 +} |