blob: 30a09b5d5e3af7afa97a1dee48c2c2f795e3c5d4 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit qt4-r2
DESCRIPTION="Graphical wireless scanning for Linux "
HOMEPAGE="http://sourceforge.net/projects/linssid/"
SRC_URI="http://downloads.sourceforge.net/${PN}/${PN}_${PV}.orig.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="
dev-libs/boost
dev-qt/qtgui:4
net-wireless/wireless-tools
>=x11-libs/qwt-6
"
RDEPEND="${DEPEND}"
src_prepare() {
# fix hard-coded gcc version
sed -i 's/gcc-4\.6/gcc/' linssid.pro
sed -i 's/g++-4\.6/g++/' linssid.pro
# get and use QWT version
QWT_VERSION="$(best_version x11-libs/qwt | cut -d "-" -f3 | cut -d "." -f1)"
sed -i "s/\/usr\/include\/qwt/\/usr\/include\/qwt${QWT_VERSION}/g" linssid.pro || die
sed -i "s/\/usr\/lib\/libqwt.so/-lqwt${QWT_VERSION}/g" linssid.pro || die
sed -i 's/\/usr\/lib\/libboost_regex-mt\.a/-lboost_regex/' linssid.pro || die
# use uniform include style for qwt
sed -i "s/#include <qwt\//#include </" *.h || die
# fix QA warnings
sed -i "s/Version=.*//" linssid.desktop || die
sed -i "s/Categories=.*/Categories=Network;/" linssid.desktop || die
}
pkg_postinst() {
elog "This package parses the output of "iw" and needs root privileges"
elog "to do so. You can either start it as root or set up sudo"
elog "rights (recommended)."
}
|