blob: de3b542f94cf98c3e2d5fb5f273479bb1fe4dadd (
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-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-electronics/osqoop/osqoop-1.1.1.ebuild,v 1.3 2013/03/02 23:19:36 hwoarang Exp $
EAPI=4
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"
DEPEND="${RDEPEND}"
S=${WORKDIR}/${PN}-${PN}
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
}
|