2007-10-21 17:13:51 +02:00
|
|
|
# Copyright 1999-2007 Gentoo Foundation
|
2007-10-21 16:14:51 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Header: $
|
|
|
|
|
2007-10-21 17:13:51 +02:00
|
|
|
inherit eutils rpm multilib
|
2007-10-21 16:14:51 +02:00
|
|
|
|
|
|
|
DESCRIPTION="Binary only GIU for LightScribe"
|
|
|
|
HOMEPAGE="http://www.lightscribe.com/"
|
|
|
|
SRC_URI="http://download.lightscribe.com/ls/lightScribeSimpleLabeler-${PV}-linux-2.6-intel.rpm"
|
|
|
|
|
|
|
|
LICENSE="HP-LightScribe"
|
|
|
|
SLOT="0"
|
2007-10-21 17:13:51 +02:00
|
|
|
KEYWORDS="~x86 ~amd64"
|
|
|
|
IUSE="multilib"
|
2007-10-21 16:14:51 +02:00
|
|
|
|
|
|
|
DEPEND=""
|
|
|
|
|
|
|
|
RDEPEND="virtual/libc
|
|
|
|
sys-libs/libstdc++-v3
|
|
|
|
>=app-cdr/liblightscribe-1.4.113.1
|
2007-10-21 17:13:51 +02:00
|
|
|
x86? ( >=media-libs/fontconfig-2.3.2
|
|
|
|
>=media-libs/freetype-2.1.10
|
|
|
|
>=media-libs/libpng-1.2.8
|
|
|
|
>=x11-libs/qt-4.0.1
|
|
|
|
x11-libs/libICE
|
|
|
|
x11-libs/libSM
|
|
|
|
x11-libs/libX11
|
|
|
|
x11-libs/libXcursor
|
|
|
|
x11-libs/libXext )
|
2007-10-21 16:14:51 +02:00
|
|
|
sys-devel/gcc
|
|
|
|
sys-libs/zlib"
|
|
|
|
|
|
|
|
RESTRICT="mirror strip"
|
|
|
|
|
|
|
|
src_unpack() {
|
|
|
|
rpm_src_unpack
|
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() { :; }
|
|
|
|
|
|
|
|
src_install() {
|
2007-10-21 17:13:51 +02:00
|
|
|
has_multilib_profile && ABI="x86"
|
|
|
|
|
2007-10-21 16:14:51 +02:00
|
|
|
into /opt/lightscribe/SimpleLabeler
|
|
|
|
dobin ${WORKDIR}/opt/lightscribeApplications/SimpleLabeler/SimpleLabeler
|
|
|
|
dobin ${WORKDIR}/opt/lightscribeApplications/SimpleLabeler/*.*
|
|
|
|
insinto /opt/lightscribe/SimpleLabeler/bin/content
|
|
|
|
doins -r ${WORKDIR}/opt/lightscribeApplications/SimpleLabeler/content/*
|
2007-10-21 17:13:51 +02:00
|
|
|
use amd64 && dolib.so ${WORKDIR}/opt/lightscribeApplications/common/Qt/*
|
2007-10-21 16:14:51 +02:00
|
|
|
dodoc ${WORKDIR}/opt/lightscribeApplications/*.*
|
|
|
|
|
|
|
|
newicon ${WORKDIR}/opt/lightscribeApplications/SimpleLabeler/content/images/LabelWizardIcon.png ${PN}.png
|
|
|
|
make_desktop_entry /opt/lightscribe/SimpleLabeler/bin/SimpleLabeler "LightScribe Simple Labeler" ${PN}.png AudioVideo
|
|
|
|
}
|