diff options
author | 2004-10-12 22:44:31 +0000 | |
---|---|---|
committer | 2004-10-12 22:44:31 +0000 | |
commit | 1c0cba72f9ee267a39051b9cc05d810018c1c66d (patch) | |
tree | 3de16ba444d18cc77d277a9acc8fb26cc1ef10e1 /media-gfx/splash-themes-livecd | |
parent | minor updates to meta (Manifest recommit) (diff) | |
download | gentoo-2-1c0cba72f9ee267a39051b9cc05d810018c1c66d.tar.gz gentoo-2-1c0cba72f9ee267a39051b9cc05d810018c1c66d.tar.bz2 gentoo-2-1c0cba72f9ee267a39051b9cc05d810018c1c66d.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..e98098c66408 --- /dev/null +++ b/media-gfx/splash-themes-livecd/Manifest @@ -0,0 +1,4 @@ +MD5 2bdaaa288a201e35a96968fd5eb33131 ChangeLog 2921 +MD5 d86e5b5e47260e5a965eae2afe6d6d40 metadata.xml 159 +MD5 6f405d11696d0e8a74e0ca20d2222125 splash-themes-livecd-2004.3.ebuild 837 +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 +} |