blob: fff589616f15e9a94e31da5282f85f5cf7ca5a3b (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tex/texamator/texamator-1.5b.ebuild,v 1.1 2009/12/03 11:27:23 ssuominen Exp $
EAPI=2
inherit multilib python
MY_PN=TeXamator
DESCRIPTION="A program aimed at helping you making your exercise sheets"
HOMEPAGE="http://snouffy.free.fr/blog-en/index.php/category/TeXamator"
SRC_URI="http://snouffy.free.fr/blog-en/public/${MY_PN}/${MY_PN}.v.${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-python/PyQt4
app-text/dvipng
virtual/latex-base"
S=${WORKDIR}
src_install() {
dodoc ${MY_PN}/README
rm -f ${MY_PN}/README
insinto /usr/$(get_libdir)
doins -r ${MY_PN} || die
dobin "${FILESDIR}"/${PN} || die
}
pkg_postinst() {
python_mod_optimize /usr/$(get_libdir)/${MY_PN}
}
pkg_postrm() {
python_mod_cleanup /usr/$(get_libdir)/${MY_PN}
}
|