blob: d96f176198bb096612cbd6ad4e2047910e29b527 (
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-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gsim/gsim-0.20.1.ebuild,v 1.3 2013/02/19 16:25:36 jlec Exp $
EAPI=4
inherit eutils qt4-r2 toolchain-funcs
DESCRIPTION="Programm for visualisation and processing of experimental and simulated NMR spectra"
HOMEPAGE="http://sourceforge.net/projects/gsim/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="emf opengl"
RDEPEND="
dev-cpp/muParser
media-libs/freetype
sci-libs/libcmatrix
sci-libs/minuit
virtual/blas
x11-libs/qt-svg:4
emf? ( media-libs/libemf )
opengl? ( x11-libs/qt-opengl:4 )"
DEPEND="${RDEPEND}"
PATCHES=( "${FILESDIR}"/${PV}-build.conf.patch )
DOCS="release.txt README_GSIM.* quickstart.* changes.log programming.*"
src_prepare() {
edos2unix ${PN}.pro
qt4-r2_src_prepare
cat >> build.conf <<- EOF
INCLUDEPATH += "${EPREFIX}/usr/include/libcmatrixR3/" \
"${EPREFIX}/usr/include/Minuit2" \
"${EPREFIX}/usr/include"
LIBS += -lcmatrix -lMinuit2 -lmuparser $($(tc-getPKG_CONFIG) --libs cblas)
EOF
use opengl && echo "CONFIG+=use_opengl" >> build.conf
if use emf; then
cat >> build.conf <<- EOF
CONFIG+=use_emf
DEFINES+=USE_EMF_OUTPUT
LIBS += -L\"${EPREFIX}/usr/include/libEMF\" -lEMF
EOF
fi
sed \
-e "s:quickstart.pdf:../share/doc/${PF}/quickstart.pdf:g" \
-e "s:README_GSIM.pdf:../share/doc/${PF}/README_GSIM.pdf:g" \
-i mainform.h || die
}
src_install() {
qt4-r2_src_install
dobin ${PN}
insinto /usr/share/${PN}
doins -r images ${PN}.ico
insinto /usr/share/${PN}/ui
doins *.ui
}
|