From d61d1dad9832890ed448e93adb1bc85d6b046d28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ctibor=20Bran=C4=8D=C3=ADk?= Date: Wed, 8 Mar 2017 21:38:24 +0100 Subject: Move nitrokey-app to app-crypt category --- .../files/nitrokey-app-9999_fix_udev_path.patch | 11 +++++++ app-crypt/nitrokey-app/metadata.xml | 20 ++++++++++++ app-crypt/nitrokey-app/nitrokey-app-9999.ebuild | 37 ++++++++++++++++++++++ .../files/nitrokey-app-9999_fix_udev_path.patch | 11 ------- app-misc/nitrokey-app/metadata.xml | 20 ------------ app-misc/nitrokey-app/nitrokey-app-9999.ebuild | 37 ---------------------- 6 files changed, 68 insertions(+), 68 deletions(-) create mode 100644 app-crypt/nitrokey-app/files/nitrokey-app-9999_fix_udev_path.patch create mode 100644 app-crypt/nitrokey-app/metadata.xml create mode 100644 app-crypt/nitrokey-app/nitrokey-app-9999.ebuild delete mode 100644 app-misc/nitrokey-app/files/nitrokey-app-9999_fix_udev_path.patch delete mode 100644 app-misc/nitrokey-app/metadata.xml delete mode 100644 app-misc/nitrokey-app/nitrokey-app-9999.ebuild diff --git a/app-crypt/nitrokey-app/files/nitrokey-app-9999_fix_udev_path.patch b/app-crypt/nitrokey-app/files/nitrokey-app-9999_fix_udev_path.patch new file mode 100644 index 0000000..dd6d360 --- /dev/null +++ b/app-crypt/nitrokey-app/files/nitrokey-app-9999_fix_udev_path.patch @@ -0,0 +1,11 @@ +--- CMakeLists.txt 2015-11-05 23:42:14.451385162 +0100 ++++ CMakeLists.txt.new 2015-11-05 23:41:54.556413307 +0100 +@@ -218,7 +218,7 @@ + # Install Nitrokey udev rules + install(FILES + ${CMAKE_SOURCE_DIR}/data/40-nitrokey.rules +- DESTINATION /etc/udev/rules.d ++ DESTINATION /usr/lib/udev/rules.d + ) + + # Install autocompletion scripts diff --git a/app-crypt/nitrokey-app/metadata.xml b/app-crypt/nitrokey-app/metadata.xml new file mode 100644 index 0000000..2c53968 --- /dev/null +++ b/app-crypt/nitrokey-app/metadata.xml @@ -0,0 +1,20 @@ + + + + + ctibor@brancik.cz + Ctibor Brančík + + + Application for accessing and controling Nitrokey Start/Pro/Storage cryptograhic tokens and storage devices. + + + + mateusz@nitrokey.com + Mateusz Zalega + + https://github.com/Nitrokey/nitrokey-app/commits/master + https://github.com/Nitrokey/nitrokey-app/issues + Nitrokey/nitrokey-app + + diff --git a/app-crypt/nitrokey-app/nitrokey-app-9999.ebuild b/app-crypt/nitrokey-app/nitrokey-app-9999.ebuild new file mode 100644 index 0000000..c445a84 --- /dev/null +++ b/app-crypt/nitrokey-app/nitrokey-app-9999.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit git-2 cmake-utils + +DESCRIPTION="App for accessing Nitrokey (Start/Pro/Storage) hardware smartcard tokens" +HOMEPAGE="https://www.nitrokey.com" + +EGIT_REPO_URI="https://github.com/Nitrokey/nitrokey-app.git" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gtk" + +DEPEND=" + virtual/libusb:1 + gtk? ( dev-libs/libappindicator:2 ) + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 +" +RDEPEND="${DEPEND}" + +src_prepare() { + epatch "${FILESDIR}/nitrokey-app-9999_fix_udev_path.patch" +} + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_has gtk LIBAPPINDICATOR) + ) + cmake-utils_src_configure +} diff --git a/app-misc/nitrokey-app/files/nitrokey-app-9999_fix_udev_path.patch b/app-misc/nitrokey-app/files/nitrokey-app-9999_fix_udev_path.patch deleted file mode 100644 index dd6d360..0000000 --- a/app-misc/nitrokey-app/files/nitrokey-app-9999_fix_udev_path.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- CMakeLists.txt 2015-11-05 23:42:14.451385162 +0100 -+++ CMakeLists.txt.new 2015-11-05 23:41:54.556413307 +0100 -@@ -218,7 +218,7 @@ - # Install Nitrokey udev rules - install(FILES - ${CMAKE_SOURCE_DIR}/data/40-nitrokey.rules -- DESTINATION /etc/udev/rules.d -+ DESTINATION /usr/lib/udev/rules.d - ) - - # Install autocompletion scripts diff --git a/app-misc/nitrokey-app/metadata.xml b/app-misc/nitrokey-app/metadata.xml deleted file mode 100644 index 2c53968..0000000 --- a/app-misc/nitrokey-app/metadata.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - ctibor@brancik.cz - Ctibor Brančík - - - Application for accessing and controling Nitrokey Start/Pro/Storage cryptograhic tokens and storage devices. - - - - mateusz@nitrokey.com - Mateusz Zalega - - https://github.com/Nitrokey/nitrokey-app/commits/master - https://github.com/Nitrokey/nitrokey-app/issues - Nitrokey/nitrokey-app - - diff --git a/app-misc/nitrokey-app/nitrokey-app-9999.ebuild b/app-misc/nitrokey-app/nitrokey-app-9999.ebuild deleted file mode 100644 index c445a84..0000000 --- a/app-misc/nitrokey-app/nitrokey-app-9999.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit git-2 cmake-utils - -DESCRIPTION="App for accessing Nitrokey (Start/Pro/Storage) hardware smartcard tokens" -HOMEPAGE="https://www.nitrokey.com" - -EGIT_REPO_URI="https://github.com/Nitrokey/nitrokey-app.git" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="gtk" - -DEPEND=" - virtual/libusb:1 - gtk? ( dev-libs/libappindicator:2 ) - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 -" -RDEPEND="${DEPEND}" - -src_prepare() { - epatch "${FILESDIR}/nitrokey-app-9999_fix_udev_path.patch" -} - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use_has gtk LIBAPPINDICATOR) - ) - cmake-utils_src_configure -} -- cgit v1.2.3