From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7D941138334 for ; Sat, 10 Nov 2018 04:52:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 573F7E0B5E; Sat, 10 Nov 2018 04:52:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3418EE0B5E for ; Sat, 10 Nov 2018 04:52:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C5241335CF2 for ; Sat, 10 Nov 2018 04:52:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F390D44D for ; Sat, 10 Nov 2018 04:52:45 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1541825505.d6f3a2a455194343dd0768cfea5f8a9012e39eac.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/linssid/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/linssid/linssid-3.6-r1.ebuild X-VCS-Directories: net-wireless/linssid/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: d6f3a2a455194343dd0768cfea5f8a9012e39eac X-VCS-Branch: master Date: Sat, 10 Nov 2018 04:52:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 690bc238-4154-42e3-97ef-246bfb80e681 X-Archives-Hash: a23f6f227510b43d859b604567e6bd36 commit: d6f3a2a455194343dd0768cfea5f8a9012e39eac Author: Conrad Kostecki kostecki com> AuthorDate: Sun Nov 4 16:54:07 2018 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Sat Nov 10 04:51:45 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6f3a2a4 net-wireless/linssid: disable optional gksu support Also bumped to EAPI=7. Closes: https://bugs.gentoo.org/670268 Package-Manager: Portage-2.3.51, Repoman-2.3.11 Signed-off-by: Conrad Kostecki kostecki.com> Signed-off-by: Georgy Yakovlev gentoo.org> net-wireless/linssid/linssid-3.6-r1.ebuild | 61 ++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/net-wireless/linssid/linssid-3.6-r1.ebuild b/net-wireless/linssid/linssid-3.6-r1.ebuild new file mode 100644 index 00000000000..8dc533ea7ce --- /dev/null +++ b/net-wireless/linssid/linssid-3.6-r1.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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" + +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=" + ${DEPEND} + net-wireless/iw + sys-auth/polkit + x11-libs/libxkbcommon[X] +" + +S="${WORKDIR}/${P}/${PN}-app" + +DOCS=( README_${PV} ) + +src_prepare() { + default + + # Fix lib path for x11-libs/qwt and use system qwt for compiling + sed -e '/libqwt-qt5.so.6/c\LIBS += -lqwt6-qt5' -e 's/CONFIG += release/& qwt/' -i linssid-app.pro || die +} + +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 +}