diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-04-22 15:12:04 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-04-22 15:12:04 +0000 |
commit | 153c1c871d5727ec608aa065f97cc15f346f0625 (patch) | |
tree | 5479b252db219b758e7799ade6edee9e41d172d5 /media-gfx | |
parent | Version bump, bug #361921. Includes libpng-1.5 support, 1.9.7 restricts dep t... (diff) | |
download | gentoo-2-153c1c871d5727ec608aa065f97cc15f346f0625.tar.gz gentoo-2-153c1c871d5727ec608aa065f97cc15f346f0625.tar.bz2 gentoo-2-153c1c871d5727ec608aa065f97cc15f346f0625.zip |
Use a generalized syntax to handle multiple base commands; install in /opt; fix description; simplify doc install.
(Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/iscan-plugin-gt-f500/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/iscan-plugin-gt-f500/iscan-plugin-gt-f500-1.0.0.1.ebuild | 32 | ||||
-rw-r--r-- | media-gfx/iscan-plugin-gt-f500/metadata.xml | 4 |
3 files changed, 29 insertions, 14 deletions
diff --git a/media-gfx/iscan-plugin-gt-f500/ChangeLog b/media-gfx/iscan-plugin-gt-f500/ChangeLog index 61e77fc610b5..d61f2938bca7 100644 --- a/media-gfx/iscan-plugin-gt-f500/ChangeLog +++ b/media-gfx/iscan-plugin-gt-f500/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/iscan-plugin-gt-f500 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/iscan-plugin-gt-f500/ChangeLog,v 1.2 2011/04/21 14:28:16 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/iscan-plugin-gt-f500/ChangeLog,v 1.3 2011/04/22 15:12:04 flameeyes Exp $ + + 22 Apr 2011; Diego E. Pettenò <flameeyes@gentoo.org> + iscan-plugin-gt-f500-1.0.0.1.ebuild, metadata.xml: + Use a generalized syntax to handle multiple base commands; install in /opt; + fix description; simplify doc install. 21 Apr 2011; Diego E. Pettenò <flameeyes@gentoo.org> iscan-plugin-gt-f500-1.0.0.1.ebuild: diff --git a/media-gfx/iscan-plugin-gt-f500/iscan-plugin-gt-f500-1.0.0.1.ebuild b/media-gfx/iscan-plugin-gt-f500/iscan-plugin-gt-f500-1.0.0.1.ebuild index 178bbb2ea0f1..11ae51b6b269 100644 --- a/media-gfx/iscan-plugin-gt-f500/iscan-plugin-gt-f500-1.0.0.1.ebuild +++ b/media-gfx/iscan-plugin-gt-f500/iscan-plugin-gt-f500-1.0.0.1.ebuild @@ -1,16 +1,16 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/iscan-plugin-gt-f500/iscan-plugin-gt-f500-1.0.0.1.ebuild,v 1.2 2011/04/21 14:28:16 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/iscan-plugin-gt-f500/iscan-plugin-gt-f500-1.0.0.1.ebuild,v 1.3 2011/04/22 15:12:04 flameeyes Exp $ EAPI="4" inherit rpm versionator -MY_P="${PN}-$(get_version_component_range 1-3)" +MY_P="${PN}-$(replace_version_separator 3 -)" -DESCRIPTION="Epson Perfection V2480/2580 PHOTO scanner plugin for SANE 'epkowa' backend." +DESCRIPTION="Epson Perfection 2480/2580 PHOTO scanner plugin for SANE 'epkowa' backend." HOMEPAGE="http://www.avasys.jp/english/linux_e/dl_scan.html" -SRC_URI="http://lx1.avasys.jp/iscan/v1180/${PN}-$(replace_version_separator 3 -).i386.rpm" +SRC_URI="http://lx1.avasys.jp/iscan/v1180/${MY_P}.i386.rpm" LICENSE="EPSON EAPL" SLOT="0" @@ -31,16 +31,18 @@ src_install() { insinto /usr/share/iscan doins "${WORKDIR}/usr/share/iscan/"* - dodoc "usr/share/doc/${MY_P}/"* + dodoc usr/share/doc/*/* use minimal && return # install scanner plugins - exeinto "/usr/$(get_libdir)/iscan" + exeinto /opt/iscan/esci doexe "${WORKDIR}/usr/$(get_libdir)/iscan/"* } pkg_setup() { - basecmd="iscan-registry --COMMAND interpreter usb 0x04b8 0x0121 '/usr/$(get_libdir)/iscan/libesint41.so.2 /usr/share/iscan/esfw41.bin'" + basecmds=( + "iscan-registry --COMMAND interpreter usb 0x04b8 0x0121 '/opt/iscan/esci/libesint41.so.2 /usr/share/iscan/esfw41.bin'" + ) } pkg_postinst() { @@ -53,11 +55,15 @@ pkg_postinst() { # Needed for scanner to work properly. if [[ ${ROOT} == "/" ]]; then - eval ${basecmd/COMMAND/add} + for basecmd in "${basecmds[@]}"; do + eval ${basecmd/COMMAND/add} + done else ewarn "Unable to register the plugin and firmware when installing outside of /." ewarn "execute the following command yourself:" - ewarn "${basecmd/COMMAND/add}" + for basecmd in "${basecmds[@]}"; do + ewarn "${basecmd/COMMAND/add}" + done fi } @@ -66,10 +72,14 @@ pkg_prerm() { [[ -n ${REPLACED_BY_VERSION} ]] && return if [[ ${ROOT} == "/" ]]; then - eval ${basecmd/COMMAND/remove} + for basecmd in "${basecmds[@]}"; do + eval ${basecmd/COMMAND/remove} + done else ewarn "Unable to de-register the plugin and firmware when installing outside of /." ewarn "execute the following command yourself:" - ewarn "${basecmd/COMMAND/remove}" + for basecmd in "${basecmds[@]}"; do + ewarn "${basecmd/COMMAND/remove}" + done fi } diff --git a/media-gfx/iscan-plugin-gt-f500/metadata.xml b/media-gfx/iscan-plugin-gt-f500/metadata.xml index 73e49419c3a0..90b8153ae56e 100644 --- a/media-gfx/iscan-plugin-gt-f500/metadata.xml +++ b/media-gfx/iscan-plugin-gt-f500/metadata.xml @@ -15,8 +15,8 @@ Supports the following models: - EPSON Perfection 2480 PHOTO - EPSON Perfection 2580 PHOTO + EPSON Perfection 2480 PHOTO / GT-F500 + EPSON Perfection 2580 PHOTO / GT-F550 </longdescription> <use> |