blob: 5ebd4d26127608011f9a7508b3d3e291093d468d (
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
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild,v 1.5 2011/03/02 19:35:12 jlec Exp $
EAPI="1"
inherit eutils
DESCRIPTION="A fast interactive 2D plotter."
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
HOMEPAGE="http://quickplot.sourceforge.net/"
IUSE="sndfile"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ppc x86"
RDEPEND="
dev-cpp/gtkmm:2.4
sndfile? ( media-libs/libsndfile )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-libsigc++-2.2.patch
epatch "${FILESDIR}"/${P}-gcc43.patch
epatch "${FILESDIR}"/${P}-linking.patch
# Some files have been moved around to more appropriate locations
sed -i \
-e 's|quickplot_icon.png|/usr/share/pixmaps/quickplot.png|' \
-e 's|href="ChangeLog"|href="../ChangeLog.gz"|' \
index.html.in
sed -i -e 's|href="COPYING"|href="/usr/portage/licenses/GPL-2"|' \
about.html.in
}
src_compile() {
econf $(use_with sndfile libsndfile) || die "econf step failed."
emake htmldir=/usr/share/doc/${PF}/html || die "emake step failed."
}
src_install () {
emake \
DESTDIR="${D}" \
htmldir=/usr/share/doc/${PF}/html \
install || die "make install step failed."
dodoc AUTHORS ChangeLog README README.devel TODO
# Remove COPYING as it is specified in LICENCE. Move other stuff.
cd "${D}"/usr/share/doc/${PF}/html
rm COPYING quickplot_icon.png ChangeLog
mv "${D}"/usr/share/pixmaps/quickplot_icon.png \
"${D}"/usr/share/pixmaps/quickplot.png
make_desktop_entry 'quickplot --no-pipe' Quickplot quickplot Graphics
mv "${D}"/usr/share/applications/quickplot\ --no-pipe.desktop \
"${D}"/usr/share/applications/quickplot.desktop
}
|