blob: 1a7379acce81af10ebbda89d391b7ba24a521425 (
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
50
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-visualization/veusz/veusz-1.3-r1.ebuild,v 1.1 2009/02/27 14:56:55 bicatali Exp $
inherit eutils distutils fdo-mime
DESCRIPTION="Qt based scientific plotting package with good Postscript output"
HOMEPAGE="http://home.gna.org/veusz/"
SRC_URI="http://download.gna.org/${PN}/${P}.tar.gz"
IUSE="doc examples fits"
SLOT="0"
KEYWORDS="~amd64 ~x86"
LICENSE="GPL-2"
DEPEND="dev-python/numpy"
RDEPEND="${DEPEND}
dev-python/PyQt4
fits? ( dev-python/pyfits )"
src_install() {
distutils_src_install
dodoc Interface.txt
insinto /usr/share/doc/${PF}
if use examples; then
doins -r examples || die "examples install failed"
fi
if use doc; then
cd Documents
insinto /usr/share/doc/${PF}
doins manual.pdf
insinto /usr/share/doc/${PF}/html
doins -r manual.html manimages \
|| die "doc install failed"
fi
newicon "${S}"/windows/icons/veusz_48.png veusz.png
domenu "${FILESDIR}"/veusz.desktop
insinto /usr/share/mime/packages
doins "${FILESDIR}"/veusz.xml
}
pkg_postinst() {
distutils_pkg_postinst
fdo-mime_desktop_database_update
}
pkg_postrm() {
distutils_pkg_postrm
fdo-mime_desktop_database_update
}
|