From 2771f79232c273bc2a57d23bf335dd81ccf6af28 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 5 Dec 2021 02:47:11 +0000 Subject: gentoo resync : 05.12.2021 --- media-gfx/iscan-plugin-perfection-v370/Manifest | 4 - .../iscan-plugin-perfection-v370-1.0.0.2.ebuild | 93 ---------------------- .../iscan-plugin-perfection-v370/metadata.xml | 17 ---- 3 files changed, 114 deletions(-) delete mode 100644 media-gfx/iscan-plugin-perfection-v370/Manifest delete mode 100644 media-gfx/iscan-plugin-perfection-v370/iscan-plugin-perfection-v370-1.0.0.2.ebuild delete mode 100644 media-gfx/iscan-plugin-perfection-v370/metadata.xml (limited to 'media-gfx/iscan-plugin-perfection-v370') diff --git a/media-gfx/iscan-plugin-perfection-v370/Manifest b/media-gfx/iscan-plugin-perfection-v370/Manifest deleted file mode 100644 index 3c44f5f17372..000000000000 --- a/media-gfx/iscan-plugin-perfection-v370/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -DIST iscan-plugin-perfection-v370-1.0.0-2.i386.rpm 383681 BLAKE2B 88ea54050150ae2619cf2dc1489200b3b3bbc4d36fbeb91b689a758c4ddea8361af4c64a21fe12919d9ec411d2da237e6192d4cf6488450cf0ab45d27e40dad8 SHA512 ca0d77e614b826529b23e7ccb6f8546143c471757fb9648c30830055764442c44c811d12c61b04e14d6d435c5de67eb20d24653aee23022ed7104ce89074fdf1 -DIST iscan-plugin-perfection-v370-1.0.0-2.x86_64.rpm 172082 BLAKE2B 1cb196052a3f7d53ae5870426425d80b7d9bc4ee62def3acd9b21d321fafe1342e393dd5c05dffd87077bee3e57217300c5f372bfb9e163ad08593d3031f4718 SHA512 d0a942f4dbf51edf773e3bd83749ffc5dc9b1b67daec042fb49b4050ead34c604ce0183b138dd0719c2fe1ba2d610034b8d2d16ba12df4cd8617d1182b66466f -EBUILD iscan-plugin-perfection-v370-1.0.0.2.ebuild 2294 BLAKE2B 1a833c5ef9f4b15edff38c70124a2a15359a72f62d1f0aa75368027765bbce46b1ca22c06a7ec7004eb33d1747a0052bf69bf486187fecd8891b318f15309593 SHA512 53ead17b26b8ca0aec5f8d4a39f959c0db44d9c85cb02c52905eac7bf83a4cbfe6f74cb912bd77d14e8bad8af2f722430049cab6fb5e1c421ef967a30cfc621a -MISC metadata.xml 514 BLAKE2B 9a75ca09f7359e07347fd048e83e1650fa81b8ebe97f1f614b23cd80c9997ed64c473a4baf0d86c736a27cf44ea504f6dad67e8f20cdd9cb23029fcb1b42e619 SHA512 26a28c027789be59248b243877383e4b23e2e8f2197e2d125442f4e17da0b7a5582f395b0620aa47862bb5dc2191c267f08a4fd09cfd91f93951a6a00e7bdd23 diff --git a/media-gfx/iscan-plugin-perfection-v370/iscan-plugin-perfection-v370-1.0.0.2.ebuild b/media-gfx/iscan-plugin-perfection-v370/iscan-plugin-perfection-v370-1.0.0.2.ebuild deleted file mode 100644 index ce0c32ffb21f..000000000000 --- a/media-gfx/iscan-plugin-perfection-v370/iscan-plugin-perfection-v370-1.0.0.2.ebuild +++ /dev/null @@ -1,93 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit rpm versionator multilib - -MY_PV="$(get_version_component_range 1-3)" -MY_PVR="$(replace_version_separator 3 -)" - -SCANNER="Perfection V370" -FIRMWARE="esfwdd.bin" - -DESCRIPTION="Epson ${SCANNER} and similar scanner plugin for SANE 'epkowa' backend" -HOMEPAGE="http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX" -SRC_URI="amd64? ( https://dev.gentoo.org/~flameeyes/avasys/${PN}-${MY_PVR}.x86_64.rpm ) - x86? ( https://dev.gentoo.org/~flameeyes/avasys/${PN}-${MY_PVR}.i386.rpm )" - -LICENSE="AVASYS" -SLOT="0" -KEYWORDS="-* ~amd64 ~x86" - -IUSE="" - -DEPEND=">=media-gfx/iscan-2.21.0" -RDEPEND="${DEPEND}" - -S="${WORKDIR}" - -QA_PREBUILT="/opt/iscan/lib/*" - -src_configure() { :; } -src_compile() { :; } - -src_install() { - # install scanner firmware - insinto /usr/share/iscan - doins "${WORKDIR}"/usr/share/iscan/* - - dodoc usr/share/doc/*/* - - # install scanner plugins - exeinto /opt/iscan/lib - doexe "${WORKDIR}/usr/$(get_libdir)/iscan/"* -} - -pkg_setup() { - basecmds=( - "iscan-registry --COMMAND interpreter usb 0x04b8 0x014a /opt/iscan/lib/libiscan-plugin-perfection-v370 /usr/share/iscan/${FIRMWARE}" - ) -} - -pkg_postinst() { - elog - elog "Firmware file ${FIRMWARE} for ${SCANNER}" - elog "has been installed in /usr/share/iscan." - elog - - # Only register scanner on new installs - [[ -n ${REPLACING_VERSIONS} ]] && return - - # Needed for scanner to work properly. - if [[ ${ROOT} == "/" ]]; then - for basecmd in "${basecmds[@]}"; do - eval ${basecmd/COMMAND/add} - done - elog "New firmware has been registered automatically." - elog - else - ewarn "Unable to register the plugin and firmware when installing outside of /." - ewarn "execute the following command yourself:" - for basecmd in "${basecmds[@]}"; do - ewarn "${basecmd/COMMAND/add}" - done - fi -} - -pkg_prerm() { - # Only unregister on on uninstall - [[ -n ${REPLACED_BY_VERSION} ]] && return - - if [[ ${ROOT} == "/" ]]; then - for basecmd in "${basecmds[@]}"; do - eval ${basecmd/COMMAND/remove} - done - else - ewarn "Unable to register the plugin and firmware when installing outside of /." - ewarn "execute the following command yourself:" - for basecmd in "${basecmds[@]}"; do - ewarn "${basecmd/COMMAND/remove}" - done - fi -} diff --git a/media-gfx/iscan-plugin-perfection-v370/metadata.xml b/media-gfx/iscan-plugin-perfection-v370/metadata.xml deleted file mode 100644 index f4c7d6fccf3c..000000000000 --- a/media-gfx/iscan-plugin-perfection-v370/metadata.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - Proprietary plugin for several EPSON scanner models, to be used - with the epkowa SANE backend (provided by - media-gfx/iscan). 32-bit and 64-bit. - - Supports the following models: - - Epson GT-F740 - Epson GT-S640 - Epson Perfection V37 - Epson Perfection V370 Photo - - -- cgit v1.2.3