summaryrefslogtreecommitdiff
blob: 6ae657f9c4247c462ee25d40e93c6740623212fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit multilib rpm

MY_P="${PN}-${PV%.*}-${PV##*.}"
DESCRIPTION="Brother scanner driver"
HOMEPAGE="http://www.brother.com/"
SRC_URI="
	amd64? ( http://download.brother.com/welcome/dlf006648/${MY_P}.x86_64.rpm )
	x86? ( http://download.brother.com/welcome/dlf006647/${MY_P}.i386.rpm )"

LICENSE="Brother-lpr no-source-code"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RESTRICT="strip"

RDEPEND="media-gfx/sane-backends
	virtual/libusb:0"

S="${WORKDIR}/opt/brother/scanner/${PN}"

src_install() {
	local lib=$(get_libdir)
	local dest=/opt/brother/scanner/${PN}

	insinto /etc${dest}
	doins Brsane4.ini brsanenetdevice4.cfg
	doins -r models4
	dosym /etc${dest}/Brsane4.ini ${dest}/Brsane4.ini
	dosym /etc${dest}/brsanenetdevice4.cfg ${dest}/brsanenetdevice4.cfg
	dosym /etc${dest}/models4 ${dest}/models4

	into ${dest}
	dobin brsaneconfig4
	dosym ${dest}/bin/brsaneconfig4 /usr/bin/brsaneconfig4

	dolib.so "${WORKDIR}"/usr/lib*/sane/libsane-brother4.so.1.0.7
	dosym libsane-brother4.so.1.0.7 ${dest}/libsane-brother4.so.1
	dosym libsane-brother4.so.1.0.7 ${dest}/libsane-brother4.so
	dosym ../../..${dest}/${lib}/libsane-brother4.so.1.0.7 \
		  /usr/${lib}/sane/libsane-brother4.so.1.0.7
	dosym libsane-brother4.so.1.0.7 /usr/${lib}/sane/libsane-brother4.so.1
	dosym libsane-brother4.so.1.0.7 /usr/${lib}/sane/libsane-brother4.so

	insinto /etc/sane.d/dll.d
	newins - ${PN} <<< "brother4"
}