blob: ef02a5592c6f50873b1123644554b06c369c13dd (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils toolchain-funcs
DESCRIPTION="multi-platform open source software oscilloscope based on Qt 4"
HOMEPAGE="http://gitorious.org/osqoop/"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-qt/qtgui:4
virtual/libusb:0
x11-libs/libXtst"
DEPEND="${RDEPEND}"
S=${WORKDIR}/${PN}-${PN}
src_prepare() {
cmake-utils_src_prepare
for f in $(find datasource processing -name CMakeLists.txt); do
sed -e '/install(TARGETS/s:DESTINATION :DESTINATION '$(get_libdir)/${PN}'/:' \
-i "${f}" || die
done
sed -e '/install(TARGETS/s:DESTINATION .:DESTINATION bin:' \
-i src/CMakeLists.txt helper/CMakeLists.txt || die
sed -e '/potentialDirs/s:/usr/share/osqoop/:'${EPREFIX}'/usr/'$(get_libdir)/${PN}'/:' \
-i src/OscilloscopeWindow.cpp || die
}
|