| 1 |
jlec |
1.1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
|
|
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
bicatali |
1.3 |
# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/quickplot-0.10.2.ebuild,v 1.2 2012/05/04 08:07:00 jdhore Exp $
|
| 4 |
jlec |
1.1 |
|
| 5 |
|
|
EAPI=4
|
| 6 |
|
|
|
| 7 |
|
|
inherit autotools-utils eutils
|
| 8 |
|
|
|
| 9 |
|
|
DESCRIPTION="A fast interactive 2D plotter"
|
| 10 |
|
|
HOMEPAGE="http://quickplot.sourceforge.net/"
|
| 11 |
bicatali |
1.3 |
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
|
| 12 |
jlec |
1.1 |
|
| 13 |
|
|
SLOT="0"
|
| 14 |
|
|
LICENSE="GPL-3"
|
| 15 |
|
|
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
|
| 16 |
|
|
IUSE="static-libs"
|
| 17 |
|
|
|
| 18 |
|
|
RDEPEND="
|
| 19 |
|
|
media-libs/libsndfile
|
| 20 |
|
|
>=sys-libs/readline-0.6.2
|
| 21 |
|
|
x11-libs/gtk+:3"
|
| 22 |
|
|
DEPEND="${RDEPEND}
|
| 23 |
jdhore |
1.2 |
virtual/pkgconfig"
|
| 24 |
jlec |
1.1 |
|
| 25 |
|
|
src_configure() {
|
| 26 |
|
|
local myeconfargs=(
|
| 27 |
|
|
--htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
|
| 28 |
|
|
)
|
| 29 |
|
|
autotools-utils_src_configure
|
| 30 |
|
|
}
|
| 31 |
|
|
|
| 32 |
|
|
src_install () {
|
| 33 |
|
|
autotools-utils_src_install
|
| 34 |
|
|
make_desktop_entry 'quickplot --no-pipe' Quickplot quickplot Graphics
|
| 35 |
bicatali |
1.3 |
mv "${ED}"/usr/share/applications/quickplot*.desktop \
|
| 36 |
|
|
"${ED}"/usr/share/applications/quickplot.desktop || die
|
| 37 |
jlec |
1.1 |
}
|