media-gfx/engauge: Drop old, Qt4-based

Closes: https://bugs.gentoo.org/639248
Closes: https://bugs.gentoo.org/655214
Package-Manager: Portage-2.3.40, Repoman-2.3.9
This commit is contained in:
Andreas Sturmlechner
2018-06-10 23:38:36 +02:00
parent 0fc0e82894
commit 2eb9a4b49c
2 changed files with 0 additions and 49 deletions

View File

@@ -1,2 +1 @@
DIST engauge-digitizer-10.6.tar.gz 68463313 BLAKE2B 2f939b383d2b2ca7d3ac73196ae6c9f4cd3380f7cb1bc7703d23ffe2554bfd6dfb6f206d3b9c33953757791855c908c7899f078c1c1472549859258d406e5796 SHA512 f571978298f0646f338ee786aae692800bd73242f68a4f35509023d3ea0daaa16ede6a1d45cbc28a31efc277697315c63fe3d2cce1f0cf80334bdeea11599a67
DIST engauge_5.2.tgz 5708224 BLAKE2B 65403f3eb322a3cfee2f04d3a973deef5196a475f594599e3226dad776505c639536fdc46ef94d955d94b0629faf9282378e7bb4d4d7945e0ae69cdd6160a858 SHA512 b1839a223c93866f880ca090b6dd5a9ab45a89b5f6f470fd6abba3e2aa4b108ed228c8b06c3888fa463316798c2d157e20b2e22975bd65a1124d007bb36d2d88

View File

@@ -1,48 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit versionator qmake-utils eutils
DESCRIPTION="Convert an image file showing a graph or map into numbers"
HOMEPAGE="http://digitizer.sourceforge.net/"
SRC_URI="mirror://sourceforge/digitizer/${PN}_${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples"
RDEPEND="dev-qt/qt3support:4
dev-qt/qtgui:4[gif(+)]
sci-libs/fftw:3.0
x11-libs/libXft"
DEPEND="${RDEPEND}"
src_prepare() {
# Some patching and using the DEBIAN_PACKAGE ifdef is necessary to make sure the
# documentation is looked for in the proper directory
sed -i -e "s:/usr/share/doc/engauge-digitizer-doc/html:${ROOT}/usr/share/doc/${PF}/usermanual:" \
src/digitmain.cpp || die "sed failed"
sed -i -e '/unix {/a DEFINES += DEBIAN_PACKAGE' \
digitizer.pro || die "sed failed"
eapply_user
}
src_configure() {
eqmake4 digitizer.pro
}
src_install() {
dobin bin/engauge
newicon src/img/lo32-app-digitizer.png "${PN}.png"
make_desktop_entry engauge "Engauge Digitizer" ${PN} Graphics
insinto /usr/share/doc/${PF}
if use doc; then
doins -r usermanual || die "install documentation failed"
fi
if use examples; then
doins -r samples || die "install examples failed"
fi
}