blob: d81387943810d08823ef24a9f73fb9b47888b940 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Qt based clone of the Origin plotting package, commercial binary"
HOMEPAGE="http://www.qtiplot.com/"
SRC_URI="020518_qtiplot-1.0.0-rc1-64bit-static.tar.bz2"
LICENSE="all-rights-reserved"
SLOT="0"
KEYWORDS="-* ~amd64"
RESTRICT="fetch mirror splitdebug"
QA_PREBUILT="*"
S=${WORKDIR}
RDEPEND="
=dev-db/sqlite-2*
dev-libs/glib
media-libs/fontconfig
media-libs/freetype
media-libs/mesa
virtual/glu
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXext
x11-libs/libXrender
"
src_install() {
dodir /opt
cp -av "${S}"/qtiplot-* "${D}/opt/qtiplot" || die
dosym ../qtiplot/qtiplot /opt/bin/qtiplot
}
|