blob: 81c18b1c22b570660a01ad5c9a7edac238b36f64 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
PYTHON_COMPAT=( python2_7 )
DESCRIPTION="Qt based clone of the Origin plotting package, commercial binary"
HOMEPAGE="http://www.qtiplot.com/"
SRC_URI="180814_qtiplot-0.9.9-rc12-64bit-static.tar.bz2"
LICENSE="all-rights-reserved"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="mirror splitdebug"
IUSE=""
QA_PREBUILT="*"
S=${WORKDIR}
RDEPEND="
!sci-visualization/qtiplot
"
src_install() {
dodir /opt
cp -av "${S}"/qtiplot-* "${D}/opt/qtiplot"
}
|