blob: ad018dd6a2e120cde12c6d62c8d70fdecbff15d7 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit cmake-utils fortran-2
DESCRIPTION="Assist the transition from PGPlot to PLplot in Fortran programs"
HOMEPAGE="http://pg2plplot.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="X png postscript static-libs"
DEPEND="virtual/fortran
sci-libs/plplot[fortran]"
# If USE="png" or "postscript", ensure PLplot has USE="cairo":
RDEPEND="${DEPEND}
sci-libs/plplot[fortran,X?]
png? ( sci-libs/plplot[cairo] )
postscript? ( sci-libs/plplot[cairo] )"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use static-libs CREATE_STATICLIB)
)
cmake-utils_src_configure
}
DOCS="CHANGELOG README VERSION"
|