blob: 280c7cea7917adc5ac6c0d58999007d7485f54e4 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-dicts/opendict/opendict-0.5.7.ebuild,v 1.2 2005/05/18 14:11:21 swegener Exp $
inherit eutils python
DESCRIPTION="OpenDict is a free cross-platform dictionary program."
HOMEPAGE="http://opendict.sourceforge.net/"
SRC_URI="mirror://sourceforge/opendict/OpenDict-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
DEPEND=">=dev-python/wxpython-2.6
sys-devel/gettext"
S=${WORKDIR}/OpenDict-${PV}
src_unpack() {
unpack ${A}
cd ${S}
rm Makefile
epatch ${FILESDIR}/${P}-gentoo-wxversion.patch
}
src_install() {
python_version
DHOME="${D}/usr/lib/python${PYVER}/site-packages/opendict"
dodir /usr/share/locale/lt/LC_MESSAGES
dodir /usr/share/applications
dodir /usr/share/opendict
mkdir -p ${DHOME}/lib
cp -r lib/* ${DHOME}/lib/ || die "Couldn't cp lib/"
cp -r pixmaps/ ${DHOME} || die "Couldn't cp pixmaps/"
cp opendict.py ${DHOME}
dodir /usr/bin
fperms 755 /usr/lib/python${PYVER}/site-packages/opendict/opendict.py
dosym /usr/lib/python${PYVER}/site-packages/opendict/opendict.py \
/usr/bin/opendict || die "dosym failed"
cp misc/opendict.desktop ${D}/usr/share/applications/
dodoc README.txt TODO.txt doc/OpenDict_plugin_dev.txt
}
pkg_postinst() {
einfo "You can download plugins from:"
einfo "http://kebil.ghost.lt/OpenDict_plugins.html"
einfo "Put them in /usr/share/${PN} for system-wide use or"
einfo "~/.opendict/plugins/"
}
|