app-cdr/lightscribe-lacie: add die for do

git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/lightscribe@1932 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
geos_one 2010-02-03 07:50:40 +00:00
parent 0c14d1439c
commit 67c5f9957e
3 changed files with 13 additions and 9 deletions

View File

@ -2,6 +2,10 @@
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
03 Feb 2010; Mario Fetka <mario.fetka@gmail.com>
lightscribe-lacie-1.0_p6-r5.ebuild:
add die for do
03 Feb 2010; Mario Fetka <mario.fetka@gmail.com>
-lightscribe-lacie-1.0_p6-r4.ebuild, +lightscribe-lacie-1.0_p6-r5.ebuild:
update ebuild

View File

@ -1,5 +1,5 @@
DIST 4L-1.0-r6.i586.rpm 3603229 RMD160 2ae0a33ae1051c793a623784a5abf04b149c5372 SHA1 929d62f53c208422a972f01c193720ce798f72c0 SHA256 7d6a04ed0ca5d129d992160ede24d59f992293f5cb003578e719a52a92530724
DIST lacie.png 6678 RMD160 08fc48b2391832242ff9b32ea4a79be8fac39daa SHA1 fc5d67d2ac3bdfb3c103eaded5b8dd40496db716 SHA256 e16129f00875563304c8dd41438783af10904569be9c54b077feeaa5941becc4
EBUILD lightscribe-lacie-1.0_p6-r5.ebuild 2286 RMD160 b8acd11762416b51acf724daca0facdf9dee54fb SHA1 e058a30e71d6c24839295a099d5605b3d68df402 SHA256 3c0ea727566c1778418bc8de5fa588c1b1a86e933def44160d9faac6be16cc57
MISC ChangeLog 2348 RMD160 20d93a05bddbe3d0a8153005ff3652235911e6d3 SHA1 8ffe6ad482e56998533eded9cd3833e45a351350 SHA256 c26f3a2880fe8669113284487dc5bc3fefa927abbf861a405121cb556018ff25
EBUILD lightscribe-lacie-1.0_p6-r5.ebuild 2477 RMD160 b16a1a53b05423ccb06b3bf78830f0ea8483a288 SHA1 aa2338fc1d19121779f267651031d9be311cd64a SHA256 6add89772573cd7319f38668559d1d94ae5767ef00eb138cc99637aeb84cca8c
MISC ChangeLog 2455 RMD160 63c2d5986901b94ca368e4e02b6ff2894d976145 SHA1 f4f15f85e22249705ced579c9fe238517a7b8079 SHA256 bea78c56fa0415d191797c7c6a9921a847614a06d81d55895a99f09b8787c512
MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42

View File

@ -15,7 +15,7 @@ SRC_URI="http://www.lacie.com/download/drivers/4L-${MY_PV}.i586.rpm
# The official license of the rpm tag states "Commercial"
# such a license don't exist in gentoo so as-is was chosen
# also on Lacie's website aren't more information
# also on Lacie's website aren't more information then
# Free To Use But Restricted
LICENSE="as-is"
SLOT="0"
@ -51,19 +51,19 @@ src_install() {
has_multilib_profile && ABI="x86"
exeinto /opt/lightscribe/4L
doexe usr/4L/4L-*
doexe usr/4L/lacie*
doexe usr/4L/4L-* || die "4L-* install failed"
doexe usr/4L/lacie* || die "lacie* install failed"
insinto /opt/lightscribe/4L/translations
for x in ja it fr es de
do
if use linguas_${x}
then
doins usr/4L/translations/4L-gui_${x}.qm
doins usr/4L/translations/4L-gui_${x}.qm || die "translation install failed"
fi
done
dodoc usr/4L/doc/*
dodoc usr/4L/doc/* || die "doc install failed"
insinto /opt/lightscribe/template/Lacie
doins usr/4L/templates/*
doins usr/4L/templates/* || die "template install failed"
into /opt
# Buggy binary software
# first run from the install dir otherwise it would not find the translations
@ -75,6 +75,6 @@ src_install() {
fperms u+s /opt/lightscribe/4L/4L-gui
fperms u+s /opt/lightscribe/4L/4L-cli
newicon "${DISTDIR}"/lacie.png ${PN}.png
newicon "${DISTDIR}"/lacie.png ${PN}.png || die "icon install failed"
make_desktop_entry 4L-gui "Lacie LightScribe Labeler" ${PN}.png "Application;AudioVideo;DiscBurning;Recorder;"
}