blob: f72c22260d58e9782c1a3fda24b04086f52818d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/diction/diction-1.11.ebuild,v 1.4 2008/01/19 22:08:48 grobian Exp $
DESCRIPTION="Diction and style checkers for english and german texts"
HOMEPAGE="http://www.gnu.org/software/diction/diction.html"
SRC_URI="http://www.moria.de/~michael/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86"
IUSE="unicode"
DEPEND="sys-devel/gettext
virtual/libintl"
src_unpack() {
unpack ${A}
cd "${S}"
if use unicode; then
for lang in de nl; do
iconv -f ISO-8859-1 -t UTF-8 ${lang} > ${lang}.new || die "iconv failed."
mv ${lang}.new ${lang}
done
fi
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc NEWS README
}
|