diff options
author | Jeroen Roovers <jer@gentoo.org> | 2014-09-25 10:35:42 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2014-09-25 10:35:42 +0000 |
commit | 22e99f1c1863a6aa18a3ef33ac1dcd10295b723c (patch) | |
tree | c3c459daa4f0a65b35ece6bc76449a6385eb957f /app-dicts/dictd-vera | |
parent | Initial commit, ebuild by g-cpan with some minor tweaks by me. (diff) | |
download | gentoo-2-22e99f1c1863a6aa18a3ef33ac1dcd10295b723c.tar.gz gentoo-2-22e99f1c1863a6aa18a3ef33ac1dcd10295b723c.tar.bz2 gentoo-2-22e99f1c1863a6aa18a3ef33ac1dcd10295b723c.zip |
Version bump.
(Portage version: 2.2.13/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'app-dicts/dictd-vera')
-rw-r--r-- | app-dicts/dictd-vera/ChangeLog | 7 | ||||
-rw-r--r-- | app-dicts/dictd-vera/dictd-vera-1.22.ebuild | 36 |
2 files changed, 42 insertions, 1 deletions
diff --git a/app-dicts/dictd-vera/ChangeLog b/app-dicts/dictd-vera/ChangeLog index b878fba92280..c722af097e20 100644 --- a/app-dicts/dictd-vera/ChangeLog +++ b/app-dicts/dictd-vera/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-dicts/dictd-vera # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/dictd-vera/ChangeLog,v 1.29 2014/03/12 23:21:05 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/dictd-vera/ChangeLog,v 1.30 2014/09/25 10:35:42 jer Exp $ + +*dictd-vera-1.22 (25 Sep 2014) + + 25 Sep 2014; Jeroen Roovers <jer@gentoo.org> +dictd-vera-1.22.ebuild: + Version bump. 12 Mar 2014; Michael Palimaka <kensington@gentoo.org> -dictd-vera-1.12.ebuild: Remove old. diff --git a/app-dicts/dictd-vera/dictd-vera-1.22.ebuild b/app-dicts/dictd-vera/dictd-vera-1.22.ebuild new file mode 100644 index 000000000000..af8c36a58237 --- /dev/null +++ b/app-dicts/dictd-vera/dictd-vera-1.22.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/dictd-vera/dictd-vera-1.22.ebuild,v 1.1 2014/09/25 10:35:42 jer Exp $ + +EAPI=5 + +DESCRIPTION="V.E.R.A. -- Virtual Entity of Relevant Acronyms for dict" +HOMEPAGE="http://home.snafu.de/ohei/vera/vueber-e.html" +SRC_URI="mirror://gnu/vera/vera-${PV}.tar.gz" + +SLOT="0" +LICENSE="FDL-1.3" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" + +DEPEND=">=app-text/dictd-1.5.5" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/vera-${PV} + +src_compile () { +# sed -f debian/dict-vera/sedfile vera.? >vera1 || die +# sed '1,2!s/^/ /' vera. > vera || die +# cat vera1>>vera || die + cat vera.[0-9a-z] | /usr/bin/dictfmt -f -u http://home.snafu.de/ohei \ + -s "V.E.R.A. -- Virtual Entity of Relevant Acronyms" \ + vera || die + /usr/bin/dictzip -v vera.dict || die +} + +src_install () { + dodir /usr/lib/dict + insinto /usr/lib/dict + doins vera.dict.dz + doins vera.index + dodoc changelog README +} |