39 lines
1,019 B
Bash
39 lines
1,019 B
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-libs/qcustomplot/qcustomplot-1.2.1.ebuild,v 1.1 2014/09/29 07:17:26 jlec Exp $
|
|
|
|
EAPI=5
|
|
|
|
inherit qt4-r2
|
|
|
|
DESCRIPTION="Qt C++ widget for plotting and data visualization"
|
|
HOMEPAGE="http://www.qcustomplot.com/"
|
|
SRC_URI="
|
|
http://www.qcustomplot.com/release/${PV}/QCustomPlot-sharedlib.tar.gz -> ${PN}-sharedlib-${PV}.tar.gz
|
|
http://www.qcustomplot.com/release/${PV}/QCustomPlot-source.tar.gz -> ${PN}-source-${PV}.tar.gz"
|
|
|
|
SLOT="0"
|
|
LICENSE="GPL-3"
|
|
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
|
IUSE=""
|
|
|
|
RDEPEND="
|
|
dev-qt/qtcore:4
|
|
dev-qt/qtgui:4"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
S="${WORKDIR}"/${PN}-source
|
|
|
|
src_prepare() {
|
|
sed \
|
|
-e 's:../../::g' \
|
|
-e '/CONFIG/s:shared.*:shared:g' \
|
|
"${WORKDIR}"/${PN}-sharedlib/sharedlib-compilation/sharedlib-compilation.pro > ${PN}.pro || die
|
|
qt4-r2_src_prepare
|
|
}
|
|
|
|
src_install() {
|
|
dolib.so lib${PN}*
|
|
doheader ${PN}.h
|
|
dodoc changelog.txt
|
|
}
|