blob: e5b99872f576c54274b958dcee8d6ad26a355488 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
if [[ "${PV}" != "9999" ]]; then
DIST_VERSION=3.500
DIST_AUTHOR="AKHUETTEL"
KEYWORDS="~amd64 ~x86"
inherit perl-module
else
EGIT_REPO_URI="https://github.com/lab-measurement/lab-measurement.git"
EGIT_BRANCH="master"
S=${WORKDIR}/${P}/Measurement
inherit perl-module git-r3
fi
DESCRIPTION="Measurement control and automation with Perl"
HOMEPAGE="http://www.labmeasurement.de/"
SLOT="0"
IUSE="debug +xpression"
RDEPEND="
dev-perl/Class-ISA
dev-perl/Clone
dev-perl/Exception-Class
dev-perl/Hook-LexWrap
dev-perl/List-MoreUtils
dev-perl/Term-ANSIScreen
dev-perl/TermReadKey
dev-perl/TeX-Encode
dev-perl/XML-Generator
dev-perl/XML-DOM
dev-perl/XML-Twig
dev-perl/encoding-warnings
dev-perl/YAML
dev-perl/Switch
sci-visualization/gnuplot
virtual/perl-Data-Dumper
virtual/perl-Encode
virtual/perl-Time-HiRes
!dev-perl/Lab-Instrument
!dev-perl/Lab-Tools
debug? (
dev-lang/perl[ithreads]
dev-perl/Wx
)
xpression? (
dev-perl/Wx
)
"
DEPEND="
${RDEPEND}
dev-perl/Module-Build
"
pkg_postinst() {
if ( ! has_version sci-libs/linuxgpib ) && ( ! has_version dev-perl/Lab-VISA ) ; then
elog "You may want to install one or more backend driver modules. Supported are"
elog " sci-libs/linuxgpib Open-source GPIB hardware driver"
elog " dev-perl/Lab-VISA Bindings for the NI proprietary VISA driver"
elog " stack (dilfridge overlay)"
fi
}
|