blob: 93d8ba03d3b26b10787ab1297695b85357d20604 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/massxpert/massxpert-1.7.6.ebuild,v 1.4 2009/09/18 20:59:44 wired Exp $
EAPI=2
inherit base eutils flag-o-matic cmake-utils
DESCRIPTION="A software suite to predict/analyze mass spectrometric data on (bio)polymers."
HOMEPAGE="http://massxpert.org/wiki/"
SRC_URI="http://download.tuxfamily.org/massxpert/source/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
RDEPEND="
x11-libs/qt-gui[accessibility]
x11-libs/qt-svg
x11-libs/qt-xmlpatterns
x11-libs/libSM
x11-libs/libICE
x11-libs/libXi
x11-libs/libXrender
x11-libs/libXrandr
x11-libs/libXcursor
x11-libs/libXext
x11-libs/libXt
x11-libs/libXfixes
x11-libs/libXau
x11-libs/libXdmcp
x11-libs/libX11
sys-libs/zlib
media-libs/freetype
media-libs/fontconfig
media-libs/nas
media-libs/libpng
dev-libs/libxml2"
DEPEND="${RDEPEND}"
S="${WORKDIR}"/"${P}"
CMAKE_IN_SOURCE_BUILD="true"
PATCHES=( "${FILESDIR}/${P}-gcc43.patch" )
src_compile() {
sed -i \
-e "s:/lib/:/$(get_libdir)/:g" \
-e "s:ADD_DEFINITIONS (-Wall -Werror):ADD_DEFINITIONS (-Wall):" \
CMakeLists.txt || \
die "404. File not found while sedding."
tc-export CC CXX LD
mycmakeargs="-D__LIB=$(get_libdir)"
if use amd64 ; then
append-flags -fPIC
fi
cmake-utils_src_compile
}
|