diff options
Diffstat (limited to 'app-dicts/ydpdict')
-rw-r--r-- | app-dicts/ydpdict/ChangeLog | 8 | ||||
-rw-r--r-- | app-dicts/ydpdict/files/digest-ydpdict-0.99.0 | 3 | ||||
-rw-r--r-- | app-dicts/ydpdict/metadata.xml | 16 | ||||
-rw-r--r-- | app-dicts/ydpdict/ydpdict-0.99.0.ebuild | 48 |
4 files changed, 70 insertions, 5 deletions
diff --git a/app-dicts/ydpdict/ChangeLog b/app-dicts/ydpdict/ChangeLog index 0196aadeeb8a..888e183e74c5 100644 --- a/app-dicts/ydpdict/ChangeLog +++ b/app-dicts/ydpdict/ChangeLog @@ -1,6 +1,12 @@ # 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.8 2007/02/21 20:45:12 peper Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/ydpdict/ChangeLog,v 1.9 2007/02/26 21:09:54 peper Exp $ + +*ydpdict-0.99.0 (26 Feb 2007) + + 26 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> metadata.xml, + +ydpdict-0.99.0.ebuild: + Version bump. Add myself to the metadata. 21 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog: Transition to Manifest2. diff --git a/app-dicts/ydpdict/files/digest-ydpdict-0.99.0 b/app-dicts/ydpdict/files/digest-ydpdict-0.99.0 new file mode 100644 index 000000000000..d350d2940680 --- /dev/null +++ b/app-dicts/ydpdict/files/digest-ydpdict-0.99.0 @@ -0,0 +1,3 @@ +MD5 059f8cc16c8914f9d0c5f90f8cc88307 ydpdict-0.99.0.tar.gz 384653 +RMD160 70a4889c6800c8fb6364ae0cbdbda09df94681a7 ydpdict-0.99.0.tar.gz 384653 +SHA256 0db937d6ebd3f41ee70bf8a3b1a35f86a4e4a2106b35da72eab1a3f09a9d2714 ydpdict-0.99.0.tar.gz 384653 diff --git a/app-dicts/ydpdict/metadata.xml b/app-dicts/ydpdict/metadata.xml index 28b373129e37..ea5c015de51f 100644 --- a/app-dicts/ydpdict/metadata.xml +++ b/app-dicts/ydpdict/metadata.xml @@ -1,8 +1,16 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> -<herd>no-herd</herd> -<maintainer> - <email>spock@gentoo.org</email> -</maintainer> + <herd>no-herd</herd> + <maintainer> + <email>spock@gentoo.org</email> + <name>Michał Januszewski</name> + </maintainer> + <maintainer> + <email>peper@gentoo.org</email> + <name>Piotr Jaroszyński</name> + </maintainer> + <longdescription lang="en"> + </longdescription> </pkgmetadata> + diff --git a/app-dicts/ydpdict/ydpdict-0.99.0.ebuild b/app-dicts/ydpdict/ydpdict-0.99.0.ebuild new file mode 100644 index 000000000000..72a316be7761 --- /dev/null +++ b/app-dicts/ydpdict/ydpdict-0.99.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/ydpdict/ydpdict-0.99.0.ebuild,v 1.1 2007/02/26 21:09:54 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="" + +RDEPEND="=app-dicts/libydpdict-${PV}* + media-libs/libao" + #Broken w/o the libao - reported upstream + #ao? ( media-libs/libao )" + +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.9.0" + +src_compile() { + econf \ + --with-libao \ + || die "econf failed" + #Broken w/o the libao - reported upstream + #$(use_with ao libao) \ + + 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 +} |