kde-misc/skanpage: add wip kde pdf scanning application

based on skanlite, but it scans in pdf and combines in one
document

Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
This commit is contained in:
Andrew Ammerlaan
2020-09-04 19:10:18 +02:00
parent 03d93e5440
commit bcc0398f68
3 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST skanpage-2020.06.11.tar.gz 12868 BLAKE2B 3df70e801bbb7347c206e6dbabcdd9706231d2b117045b33ee2c1a96a3d5cc9d9e6f51773e1aa64fb750b80f4b70cc30dae47afbab5a8ac28a2752c54e9ccd94 SHA512 0ac30ff7bc8878c552418e3920299d2fbc0f4c8e307e54487f6612ed85405a0e474c62797abbbd75d8b667daabf5d6b284c83b046629bcc83ca848921fc38e2c

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>andrewammerlaan@riseup.net</email>
<name>Andrew Ammerlaan</name>
</maintainer>
</pkgmetadata>

View File

@@ -0,0 +1,43 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
ECM_DEBUG="false"
KFMIN=5.60.0
QTMIN=5.12.3
inherit ecm desktop
COMMIT="730a125b2d5717e01159d6a3d736c1561e664674"
DESCRIPTION="Simple pdf scanning application based on libksane and KDE Frameworks"
HOMEPAGE="https://invent.kde.org/sars/skanpage"
SRC_URI="https://invent.kde.org/sars/skanpage/-/archive/${COMMIT}/${PN}-${COMMIT}.tar.gz -> ${P}.tar.gz"
# No license in repo
RESTRICT="bindist mirror"
LICENSE="all-rights-reserved"
SLOT="5"
KEYWORDS="~amd64 ~x86"
DEPEND="
>=dev-qt/qtwidgets-${QTMIN}:5
>=dev-qt/qtprintsupport-${QTMIN}:5
>=dev-qt/qtquickcontrols-${QTMIN}:5
>=kde-apps/libksane-19.04.0:5
>=kde-frameworks/kcoreaddons-${KFMIN}:5
>=kde-frameworks/ki18n-${KFMIN}:5
>=kde-frameworks/kio-${KFMIN}:5
>=kde-frameworks/kjobwidgets-${KFMIN}:5
>=kde-frameworks/kwidgetsaddons-${KFMIN}:5
>=kde-frameworks/kxmlgui-${KFMIN}:5
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}-${COMMIT}/src"
src_install() {
ecm_src_install
make_desktop_entry "${PN}" "Skanpage" scanner Graphics
}