diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-10-12 22:44:31 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-10-12 22:44:31 +0000 |
commit | f23ec881c1f3e875f3a166dbeae009b727d8becc (patch) | |
tree | a8cd15df6ede213b32de5e8bc385af32c9894fac /media-gfx/splash-themes-livecd | |
parent | minor updates to meta (diff) | |
download | historical-f23ec881c1f3e875f3a166dbeae009b727d8becc.tar.gz historical-f23ec881c1f3e875f3a166dbeae009b727d8becc.tar.bz2 historical-f23ec881c1f3e875f3a166dbeae009b727d8becc.zip |
Initial import.
Diffstat (limited to 'media-gfx/splash-themes-livecd')
5 files changed, 46 insertions, 0 deletions
diff --git a/media-gfx/splash-themes-livecd/ChangeLog b/media-gfx/splash-themes-livecd/ChangeLog new file mode 100644 index 000000000000..aa9f80a0897b --- /dev/null +++ b/media-gfx/splash-themes-livecd/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for media-gfx/splash-themes-livecd +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/splash-themes-livecd/ChangeLog,v 1.1 2004/10/12 22:44:31 wolf31o2 Exp $ + +*splash-themes-livecd-2004.3 (12 Oct 2004) + + 12 Oct 2004; Chris Gianelloni <wolf31o2@gentoo.org> +metadata.xml, + +splash-themes-livecd-2004.3.ebuild: + Initial import. + diff --git a/media-gfx/splash-themes-livecd/Manifest b/media-gfx/splash-themes-livecd/Manifest new file mode 100644 index 000000000000..2d3a88b91f52 --- /dev/null +++ b/media-gfx/splash-themes-livecd/Manifest @@ -0,0 +1,4 @@ +MD5 d86e5b5e47260e5a965eae2afe6d6d40 metadata.xml 159 +MD5 f00bfb78314cdd25fa33713703409a16 splash-themes-livecd-2004.3.ebuild 826 +MD5 b9edb131136555bcb53e3d1f0cdc5c64 ChangeLog 406 +MD5 1343d51c2fef69eb595c779bfde02674 files/digest-splash-themes-livecd-2004.3 81 diff --git a/media-gfx/splash-themes-livecd/files/digest-splash-themes-livecd-2004.3 b/media-gfx/splash-themes-livecd/files/digest-splash-themes-livecd-2004.3 new file mode 100644 index 000000000000..2192d9763263 --- /dev/null +++ b/media-gfx/splash-themes-livecd/files/digest-splash-themes-livecd-2004.3 @@ -0,0 +1 @@ +MD5 59050be5313f33247a7493fa7331444a splash-themes-livecd-2004.3.tar.bz2 1790707 diff --git a/media-gfx/splash-themes-livecd/metadata.xml b/media-gfx/splash-themes-livecd/metadata.xml new file mode 100644 index 000000000000..88653ddd7172 --- /dev/null +++ b/media-gfx/splash-themes-livecd/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>livecd</herd> +</pkgmetadata> diff --git a/media-gfx/splash-themes-livecd/splash-themes-livecd-2004.3.ebuild b/media-gfx/splash-themes-livecd/splash-themes-livecd-2004.3.ebuild new file mode 100644 index 000000000000..d1ba229c317e --- /dev/null +++ b/media-gfx/splash-themes-livecd/splash-themes-livecd-2004.3.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/splash-themes-livecd/splash-themes-livecd-2004.3.ebuild,v 1.1 2004/10/12 22:44:31 wolf31o2 Exp $ + +IUSE="livecd bootsplash" +S=${WORKDIR}/livecd-${PV} +DESCRIPTION="Gentoo ${PV} theme for bootsplash consoles" +HOMEPAGE="http://www.gentoo.org/" +SRC_URI="http://dev.gentoo.org/~wolf31o2/sources/${PN}/${PF}.tar.bz2" + +SLOT=${PV} +LICENSE="GPL-2" +KEYWORDS="~x86 ~amd64" + +DEPEND="bootsplash? ( >=media-gfx/bootsplash-0.6-r16 ) + !bootsplash? ( media-gfx/splashutils )" + +src_install() { + if use bootsplash; then + dodir /etc/bootsplash/livecd-${PV} + cp -r ${S}/* ${D}/etc/bootsplash/livecd-${PV} + else + dodir /etc/splash/livecd-${PV} + cp -r ${S}/* ${D}/etc/splash/livecd-${PV} + fi +} |