summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-05-04 23:24:45 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2018-05-10 07:33:59 +0200
commit5abccc3ff797fea57e46963e5614d6d1d05e097b (patch)
treea487c4c30bc04c1dcb386d59c2e1dfc0460ec1db /media-gfx
parentdev-db/mariadb: Version bump for 10.1.33 (diff)
downloadgentoo-5abccc3ff797fea57e46963e5614d6d1d05e097b.tar.gz
gentoo-5abccc3ff797fea57e46963e5614d6d1d05e097b.tar.bz2
gentoo-5abccc3ff797fea57e46963e5614d6d1d05e097b.zip
media-gfx/scantailor: Remove last-rited
Closes: https://bugs.gentoo.org/633386 Closes: https://bugs.gentoo.org/644398
Diffstat (limited to 'media-gfx')
-rw-r--r--media-gfx/scantailor/Manifest1
-rw-r--r--media-gfx/scantailor/metadata.xml11
-rw-r--r--media-gfx/scantailor/scantailor-0.9.12.2.ebuild54
3 files changed, 0 insertions, 66 deletions
diff --git a/media-gfx/scantailor/Manifest b/media-gfx/scantailor/Manifest
deleted file mode 100644
index 57ffb4d8a1bd..000000000000
--- a/media-gfx/scantailor/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST scantailor-0.9.12.2.tar.gz 1207379 BLAKE2B a2949c0d9a495d50927d27e33f889567a033149c3745ad522b00d3ea3b6a0c0bc7e6cc66dd79acd3b29b95eb41293774ff78215b5da7618dfd51757e1b1e6ab5 SHA512 d98603c5b3dfadeae3bda66d8b5ea085107edf9ee03efd299d50bf88a01f2b1092957f1ed4abe1a5d53b9028b7dec16dc5a8452d1a197fe0f3aaddeff6d02793
diff --git a/media-gfx/scantailor/metadata.xml b/media-gfx/scantailor/metadata.xml
deleted file mode 100644
index 9e17a6dcaa61..000000000000
--- a/media-gfx/scantailor/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>graphics@gentoo.org</email>
- <name>Gentoo Graphics Project</name>
- </maintainer>
- <upstream>
- <remote-id type="github">scantailor/scantailor</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/media-gfx/scantailor/scantailor-0.9.12.2.ebuild b/media-gfx/scantailor/scantailor-0.9.12.2.ebuild
deleted file mode 100644
index 6dee26316088..000000000000
--- a/media-gfx/scantailor/scantailor-0.9.12.2.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils eutils virtualx toolchain-funcs versionator
-MY_PV="RELEASE_$(replace_all_version_separators _)"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="A interactive post-processing tool for scanned pages"
-HOMEPAGE="http://scantailor.org/ https://github.com/scantailor/scantailor"
-SRC_URI="https://github.com/scantailor/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2 GPL-3 public-domain"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="opengl"
-
-RDEPEND="
- dev-qt/qtcore:4
- dev-qt/qtgui:4
- media-libs/libpng:0
- media-libs/tiff:0
- sys-libs/zlib
- virtual/jpeg:0
- x11-libs/libXrender
- opengl? ( dev-qt/qtopengl:4 )"
-DEPEND="${RDEPEND}
- dev-libs/boost"
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-src_configure() {
- tc-export CXX
-
- local mycmakeargs=(
- -DCOMPILER_FLAGS_OVERRIDDEN=ON
- -DENABLE_OPENGL=$(usex opengl)
- )
-
- cmake-utils_src_configure
-}
-
-src_test() {
- cd "${CMAKE_BUILD_DIR}" || die
- virtx emake test
-}
-
-src_install() {
- cmake-utils_src_install
-
- newicon resources/appicon.svg ${PN}.svg
- make_desktop_entry ${PN} "Scan Tailor"
-}