2010-02-02 23:40:13 +01:00
|
|
|
# Copyright 1999-2010 Gentoo Foundation
|
2009-08-27 13:57:21 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Header: $
|
|
|
|
|
2010-02-02 23:40:13 +01:00
|
|
|
EAPI=2
|
2009-08-27 13:57:21 +02:00
|
|
|
|
2010-02-02 23:40:13 +01:00
|
|
|
inherit eutils
|
2009-08-27 13:57:21 +02:00
|
|
|
|
2010-02-02 23:40:13 +01:00
|
|
|
# Don't change the order they are grouped by upstream categories:
|
|
|
|
# (easyer to add new template packages)
|
|
|
|
# Home & Family
|
|
|
|
# At the Office
|
|
|
|
# Creative Concepts
|
|
|
|
# Fun Outdoors
|
|
|
|
# Special Occasions
|
|
|
|
# Odds and Ends
|
2009-08-27 13:57:21 +02:00
|
|
|
TL="Food-n-Family Hobby Floral KidsKorner
|
2010-02-02 23:40:13 +01:00
|
|
|
Business 9-to-5 Architecture
|
|
|
|
Art Fantasy Urban Tattoo Music Mythology Tribal StreetStyle KickinIt GrabBag
|
|
|
|
Sports Athletic Travel Animal Nature
|
|
|
|
Wedding SpecialOccasion Holiday Bridal Seasonal LifeEvents Celebration
|
|
|
|
Bonus QuickAndSimple"
|
2009-08-27 13:57:21 +02:00
|
|
|
|
2010-02-02 23:40:13 +01:00
|
|
|
DESCRIPTION="Theme files for LightScribe"
|
2009-08-27 13:57:21 +02:00
|
|
|
HOMEPAGE="http://www.lightscribe.com/ideas/index_top.aspx"
|
|
|
|
|
|
|
|
SRC_URI=""
|
2010-02-02 23:40:13 +01:00
|
|
|
for template in ${TL}
|
2009-08-27 13:57:21 +02:00
|
|
|
do
|
2010-02-02 23:40:13 +01:00
|
|
|
SRC_URI="${SRC_URI} http://download.lightscribe.com/ls/TL_${template}Pack${PV}.tar.gz"
|
2009-08-27 13:57:21 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
LICENSE="lightscribe"
|
|
|
|
SLOT="0"
|
2010-02-02 23:40:13 +01:00
|
|
|
KEYWORDS="~amd64 ~x86"
|
2009-08-27 13:57:21 +02:00
|
|
|
IUSE=""
|
|
|
|
|
2010-02-02 23:40:13 +01:00
|
|
|
S="${WORKDIR}"
|
2009-08-27 13:57:21 +02:00
|
|
|
|
2010-02-02 23:40:13 +01:00
|
|
|
DEPEND=""
|
2009-08-27 13:57:21 +02:00
|
|
|
RDEPEND=""
|
|
|
|
|
|
|
|
RESTRICT="mirror"
|
|
|
|
|
|
|
|
src_unpack() {
|
2010-02-02 23:40:13 +01:00
|
|
|
for template in ${TL}
|
|
|
|
do
|
|
|
|
mkdir ${template}
|
|
|
|
pushd ${template}
|
|
|
|
unpack TL_${template}Pack${PV}.tar.gz
|
|
|
|
popd
|
|
|
|
done
|
2009-08-27 13:57:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
2010-02-02 23:40:13 +01:00
|
|
|
for template in ${TL}
|
|
|
|
do
|
|
|
|
insinto /opt/lightscribe/template/${template}
|
|
|
|
doins ${template}/*
|
|
|
|
done
|
2009-08-27 13:57:21 +02:00
|
|
|
}
|