blob: ccbf465466fe08889848530aab9266d3b72b86ff (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header$
inherit rpm
DESCRIPTION="LightScribe System Software by HP"
HOMEPAGE="http://www.lightscribe.com/downloadSection/linux/"
LICENSE_URI_LSS="http://www.lightscribe.com/downloadSection/linux/lssLicense.html"
LICENSE_URI_LPSDK="http://www.lightscribe.com/downloadSection/linux/lpsdkLicense.html"
SRC_URI_LSS="http://www.lightscribe.com/downloadSection/linux/downloads/lss/${P}-linux-2.6-intel.rpm"
SRC_URI_LPSDK="http://www.lightscribe.com/downloadSection/linux/downloads/lpSDK/${PN}PublicSDK-${PV}-linux-2.6-intel.rpm"
SRC_URI="${SRC_URI_LSS} sdk? ( ${SRC_URI_LPSDK} )"
LICENSE="LightScribe-LSS LightScribe-LPSDK"
SLOT="0"
KEYWORDS="-amd64 ~x86"
IUSE="sdk"
RESTRICT="fetch mirror strip"
DEPEND=""
RDEPEND="virtual/libc
=virtual/libstdc++-3*
sys-devel/gcc"
pkg_nofetch() {
einfo
einfo "The following steps are necessary to install ${PN}:"
einfo "1. Please agree to the ${PN} license at"
einfo "\t${LICENSE_URI_LSS}"
if useq sdk; then
einfo " ...and to the ${PN} SDK license at"
einfo "\t${LICENSE_URI_LPSDK}"
fi
einfo "2. Use the following URL to download the needed files into ${DISTDIR}"
einfo "\t${SRC_URI_LSS}"
if useq sdk; then
einfo "\t${SRC_URI_LPSDK}"
fi
einfo "3. Re-run the command that brought you here."
einfo
}
src_unpack() {
rpm_src_unpack
}
src_compile() { :; }
src_install() {
cd ${WORKDIR}
dodir /etc
insinto /etc
doins ./etc/lightscribe.rc
dodir /usr/lib
dolib.so ./usr/lib/liblightscribe.so.1
dosym liblightscribe.so.1 /usr/lib/liblightscribe.so
dodir /usr/lib/lightscribe/res
insinto /usr/lib/lightscribe/res
doins ./usr/lib/lightscribe/res/*
dodir /usr/lib/lightscribe/updates
insinto /usr/lib/lightscribe/updates
doins ./usr/lib/lightscribe/updates/*
dodoc ./usr/share/doc/lightscribeLicense.rtf
if useq sdk; then
dodir /usr/include
insinto /usr/include
doins ./usr/include/*
DOCDESTTREE=sdk dodoc ./usr/share/doc/lightscribe-sdk/docs/*
DOCDESTTREE=sdk dodoc ./usr/share/doc/lightscribe-sdk/linux_public_SDK_license.rtf
DOCDESTTREE=sdk/sample/lsprint dodoc ./usr/share/doc/lightscribe-sdk/sample/lsprint/*
fi
}
|