diff options
author | Sam James <sam@gentoo.org> | 2020-10-24 21:19:20 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-10-25 19:11:48 +0000 |
commit | 695203894eb9bd0d7be99ec381fadf50ff48a027 (patch) | |
tree | a5182b8901aae3d7e586ee077d8730db240477db /media-gfx/iscan-plugin-gt-f720 | |
parent | media-gfx/iscan-plugin-esdip: port to EAPI 7 (diff) | |
download | gentoo-695203894eb9bd0d7be99ec381fadf50ff48a027.tar.gz gentoo-695203894eb9bd0d7be99ec381fadf50ff48a027.tar.bz2 gentoo-695203894eb9bd0d7be99ec381fadf50ff48a027.zip |
media-gfx/iscan-plugin-gt-f720: port to EAPI 7
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-gfx/iscan-plugin-gt-f720')
-rw-r--r-- | media-gfx/iscan-plugin-gt-f720/iscan-plugin-gt-f720-0.0.1.2.ebuild | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/media-gfx/iscan-plugin-gt-f720/iscan-plugin-gt-f720-0.0.1.2.ebuild b/media-gfx/iscan-plugin-gt-f720/iscan-plugin-gt-f720-0.0.1.2.ebuild index a09a64ceb97d..89786f1de276 100644 --- a/media-gfx/iscan-plugin-gt-f720/iscan-plugin-gt-f720-0.0.1.2.ebuild +++ b/media-gfx/iscan-plugin-gt-f720/iscan-plugin-gt-f720-0.0.1.2.ebuild @@ -1,18 +1,19 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="4" +EAPI=7 -inherit multilib versionator rpm +inherit rpm -MY_PV="$(get_version_component_range 1-3)" -MY_PVR="$(replace_version_separator 3 -)" +MY_PV="$(ver_cut 1-3)" +MY_PVR="$(ver_rs 3 -)" MY_P="esci-interpreter-gt-f720-${MY_PVR}" DESCRIPTION="Epson Perfection V300 PHOTO 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/${MY_P}.x86_64.rpm ) x86? ( https://dev.gentoo.org/~flameeyes/avasys/${MY_P}.i386.rpm )" +S="${WORKDIR}" LICENSE="AVASYS" SLOT="0" @@ -21,8 +22,6 @@ KEYWORDS="-* amd64 x86" DEPEND=">=media-gfx/iscan-2.21.0" RDEPEND="${DEPEND}" -S="${WORKDIR}" - QA_PREBUILT="usr/lib64/esci/libesci-interpreter-gt-f720.so*" src_install() { @@ -42,7 +41,7 @@ pkg_postinst() { local MY_LIB="/usr/$(get_libdir)" # Needed for scaner to work properly. - iscan-registry --add interpreter usb 0x04b8 0x0131 "${MY_LIB}/esci/libesci-interpreter-gt-f720 /usr/share/esci/esfw8b.bin" + iscan-registry --add interpreter usb 0x04b8 0x0131 "${MY_LIB}/esci/libesci-interpreter-gt-f720 /usr/share/esci/esfw8b.bin" || die elog elog "Firmware file esfw8b.bin for Epson Perfection V300 PHOTO" elog "has been installed in /usr/share/esci and registered for use." @@ -52,5 +51,5 @@ pkg_postinst() { pkg_prerm() { local MY_LIB="/usr/$(get_libdir)" - iscan-registry --remove interpreter usb 0x04b8 0x0131 "${MY_LIB}/esci/libesci-interpreter-gt-f720 /usr/share/esci/esfw8b.bin" + iscan-registry --remove interpreter usb 0x04b8 0x0131 "${MY_LIB}/esci/libesci-interpreter-gt-f720 /usr/share/esci/esfw8b.bin" || die } |