diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-12-16 06:30:57 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-12-16 06:30:57 +0000 |
commit | 62e5f055562354e4dcab83044b7e44bd8a3ada2f (patch) | |
tree | 5a78982c0fc7c7ba3d31a4dc68c3ac0a29c52693 /app-dicts/ydpdict | |
parent | minor touch up, missed on last inspection (diff) | |
download | gentoo-2-62e5f055562354e4dcab83044b7e44bd8a3ada2f.tar.gz gentoo-2-62e5f055562354e4dcab83044b7e44bd8a3ada2f.tar.bz2 gentoo-2-62e5f055562354e4dcab83044b7e44bd8a3ada2f.zip |
Bump
(Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'app-dicts/ydpdict')
-rw-r--r-- | app-dicts/ydpdict/ChangeLog | 7 | ||||
-rw-r--r-- | app-dicts/ydpdict/ydpdict-1.0.2.ebuild | 45 |
2 files changed, 51 insertions, 1 deletions
diff --git a/app-dicts/ydpdict/ChangeLog b/app-dicts/ydpdict/ChangeLog index 7b1a11ed06d8..54474562f69d 100644 --- a/app-dicts/ydpdict/ChangeLog +++ b/app-dicts/ydpdict/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-dicts/ydpdict # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/ydpdict/ChangeLog,v 1.20 2013/06/01 11:08:23 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/ydpdict/ChangeLog,v 1.21 2013/12/16 06:30:57 patrick Exp $ + +*ydpdict-1.0.2 (16 Dec 2013) + + 16 Dec 2013; Patrick Lauer <patrick@gentoo.org> +ydpdict-1.0.2.ebuild: + Bump 01 Jun 2013; Pacho Ramos <pacho@gentoo.org> metadata.xml: Cleanup due bug #137506 diff --git a/app-dicts/ydpdict/ydpdict-1.0.2.ebuild b/app-dicts/ydpdict/ydpdict-1.0.2.ebuild new file mode 100644 index 000000000000..d92375264062 --- /dev/null +++ b/app-dicts/ydpdict/ydpdict-1.0.2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/ydpdict/ydpdict-1.0.2.ebuild,v 1.1 2013/12/16 06:30:57 patrick Exp $ + +EAPI=2 + +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} + sys-libs/ncurses[unicode] + ao? ( media-libs/libao )" + +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_configure() { + econf \ + $(use_with ao libao) \ + || die "econf 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 +} |