You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-wireless/linssid/linssid-3.6.ebuild

69 lines
1.3 KiB

# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit qmake-utils xdg-utils
DESCRIPTION="Graphical wireless scanning for Linux"
HOMEPAGE="https://sourceforge.net/projects/linssid/"
SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}.orig.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="policykit"
DEPEND="dev-libs/boost:=
dev-qt/qtcore:5
dev-qt/qtopengl:5
dev-qt/qtsvg:5
dev-qt/qtwidgets:5
x11-libs/qwt:6[opengl,qt5(+),svg]"
RDEPEND="net-wireless/iw
x11-libs/libxkbcommon[X]
policykit? ( sys-auth/polkit )
!policykit? ( app-admin/sudo
x11-libs/gksu )
${DEPEND}"
S="${WORKDIR}/${P}/${PN}-app"
DOCS=( README_${PV} )
src_prepare() {
# Use system qwt for compiling
sed -i -e 's/CONFIG += release/CONFIG += release qwt/' linssid-app.pro || die
# Fix lib path for x11-libs/qwt
sed -i -e '/libqwt-qt5.so.6/c\LIBS += -lqwt6-qt5' linssid-app.pro || die
# Enable 'gksu' when a user don't want policykit
if ! use policykit; then
sed -i -e 's/Exec=.*/Exec=gksu linssid/' linssid.desktop || die
fi
default
}
src_configure() {
eqmake5
}
src_install() {
emake INSTALL_ROOT="${D}" install
einstalldocs
}
pkg_postinst() {
xdg_desktop_database_update
xdg_mimeinfo_database_update
}
pkg_postrm() {
xdg_desktop_database_update
xdg_mimeinfo_database_update
}