blob: 36471bb4b5c4978c1562121481570a5f398e7d26 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/ding/ding-1.2.ebuild,v 1.8 2004/06/24 22:31:58 agriffis Exp $
DESCRIPTION="Tk based dictionary (German-English) (incl. dictionary itself)"
HOMEPAGE="http://www-user.tu-chemnitz.de/~fri/ding/"
SRC_URI="http://cgi.tu-chemnitz.de/ftp-home/pub/Local/urz/ding/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc ~sparc"
RDEPEND=">=dev-lang/tk-8*
>=sys-apps/grep-2*"
src_install() {
dobin ding
insinto /usr/share/dict
doins ger-eng.txt
insinto /usr/share/pixmaps
doins dbook.xpm
doins mini-dbook.xpm
doman ding.1
dodoc CHANGES
dodoc COPYING
dodoc README
dodoc ding.wmconfig
}
|