blob: 5520d0d1370b9a9306b72b7b36d4002fff8ad340 (
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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-visualization/qtiplot/qtiplot-0.7.7.ebuild,v 1.5 2008/04/29 14:55:52 bicatali Exp $
inherit eutils multilib qt3
DESCRIPTION="Qt based clone of the Origin plotting package"
HOMEPAGE="http://soft.proindependent.com/qtiplot.html"
SRC_URI="http://soft.proindependent.com/src/${P}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE="bindist"
RDEPEND="$(qt_min_version 3.3)
<x11-libs/qwt-5
<x11-libs/qwtplot3d-0.2.7
!bindist? ( sci-libs/gsl )
bindist? ( <sci-libs/gsl-1.10 )"
DEPEND="${RDEPEND}
app-arch/unzip"
S=${WORKDIR}/${P}/${P}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-qmake.patch
sed -i -e "s|_LIBDIR_|/usr/$(get_libdir)|" ${P}.pro || die "sed failed."
}
src_compile() {
${QTDIR}/bin/qmake QMAKE=${QTDIR}/bin/qmake ${P}.pro || die 'qmake failed.'
emake || die 'emake failed.'
}
src_install() {
make_desktop_entry qtiplot qtiplot qtiplot Graphics
dobin ../qtiplot || die 'Binary installation failed.'
}
|