diff options
author | Jose Alberto Suarez Lopez <bass@gentoo.org> | 2003-10-17 12:04:36 +0000 |
---|---|---|
committer | Jose Alberto Suarez Lopez <bass@gentoo.org> | 2003-10-17 12:04:36 +0000 |
commit | 4ddaf14b4911dac56cc94466b86bbde17d0d703d (patch) | |
tree | 917cd660a0f2f32852202e084e94da46c70dc354 /app-admin | |
parent | new version (diff) | |
download | gentoo-2-4ddaf14b4911dac56cc94466b86bbde17d0d703d.tar.gz gentoo-2-4ddaf14b4911dac56cc94466b86bbde17d0d703d.tar.bz2 gentoo-2-4ddaf14b4911dac56cc94466b86bbde17d0d703d.zip |
First release
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/systemimager-boot-bin/Manifest | 2 | ||||
-rw-r--r-- | app-admin/systemimager-boot-bin/metadata.xml | 16 | ||||
-rw-r--r-- | app-admin/systemimager-boot-bin/systemimager-boot-bin-3.0.1.ebuild | 36 |
3 files changed, 54 insertions, 0 deletions
diff --git a/app-admin/systemimager-boot-bin/Manifest b/app-admin/systemimager-boot-bin/Manifest new file mode 100644 index 000000000000..8e0ebf943fbc --- /dev/null +++ b/app-admin/systemimager-boot-bin/Manifest @@ -0,0 +1,2 @@ +MD5 7f387ad4a43a4975563e0807c8d88349 systemimager-boot-bin-3.0.1.ebuild 839 +MD5 9f9060e43acb793c3a7c93139e34f84c files/digest-systemimager-boot-bin-3.0.1 95 diff --git a/app-admin/systemimager-boot-bin/metadata.xml b/app-admin/systemimager-boot-bin/metadata.xml new file mode 100644 index 000000000000..72555d99e5fa --- /dev/null +++ b/app-admin/systemimager-boot-bin/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> + <email>bass@gentoo.org</email> + <name>José Alberto Suárez López</name> +</maintainer> +<longdescription> +SystemImager makes it easy to do automated installs (clones), software distribution, content or data distribution, configuration changes, and operating system updates to your network of Linux machines. You can even update from one Linux release version to another! + +It can also be used to ensure safe production deployments. By saving your current production image before updating to your new production image, you have a highly reliable contingency mechanism. If the new production enviroment is found to be flawed, simply roll-back to the last production image with a simple update command! + +Some typical environments include: Internet server farms, database server farms, high performance clusters, computer labs, and corporate desktop environments. +</longdescription> +</pkgmetadata> diff --git a/app-admin/systemimager-boot-bin/systemimager-boot-bin-3.0.1.ebuild b/app-admin/systemimager-boot-bin/systemimager-boot-bin-3.0.1.ebuild new file mode 100644 index 000000000000..2ef274a932d8 --- /dev/null +++ b/app-admin/systemimager-boot-bin/systemimager-boot-bin-3.0.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/systemimager-boot-bin/systemimager-boot-bin-3.0.1.ebuild,v 1.1 2003/10/17 12:04:36 bass Exp $ + +MY_P="systemimager-i386boot-standard-3.0.1-4.noarch" + +S=${WORKDIR} +DESCRIPTION="System imager boot-i386. Software that automates Linux installs, software distribution, and production deployment." +HOMEPAGE="http://www.systemimager.org/" +SRC_URI="mirror://sourceforge/systemimager/${MY_P}.rpm" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" + +DEPEND="app-arch/rpm2targz" +RDPEND="${DEPEND} + app-admin/systemimager-server-bin" + +src_unpack() { + rpm2targz ${DISTDIR}/${MY_P}.rpm + tar zxf ${WORKDIR}/${MY_P}.tar.gz +} + +src_compile() { + einfo "nothing to compile; binary package." +} + +src_install() { + +#stuff in /usr + mkdir -p ${D}/usr/share/systemimager/boot/i386/standard + insinto /usr/share/systemimager/boot/i386/standard + doins usr/share/systemimager/boot/i386/standard/* +} + |