diff options
author | Henrik Brix Andersen <brix@gentoo.org> | 2004-11-12 18:58:43 +0000 |
---|---|---|
committer | Henrik Brix Andersen <brix@gentoo.org> | 2004-11-12 18:58:43 +0000 |
commit | 03f9e0aeeae89242930a9be1e88837582ee2bc72 (patch) | |
tree | 73de2426f30b6cdfddcb6d4cfd1b04cf27fd7e74 /sys-apps | |
parent | Version bump for the binfmt_elf security vulnerability, bug #70681. (diff) | |
download | historical-03f9e0aeeae89242930a9be1e88837582ee2bc72.tar.gz historical-03f9e0aeeae89242930a9be1e88837582ee2bc72.tar.bz2 historical-03f9e0aeeae89242930a9be1e88837582ee2bc72.zip |
Initial check-in. Fixes bug #52019
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/hibernate-script/ChangeLog | 10 | ||||
-rw-r--r-- | sys-apps/hibernate-script/Manifest | 4 | ||||
-rw-r--r-- | sys-apps/hibernate-script/files/digest-hibernate-script-1.00 | 1 | ||||
-rw-r--r-- | sys-apps/hibernate-script/hibernate-script-1.00.ebuild | 41 | ||||
-rw-r--r-- | sys-apps/hibernate-script/metadata.xml | 9 |
5 files changed, 65 insertions, 0 deletions
diff --git a/sys-apps/hibernate-script/ChangeLog b/sys-apps/hibernate-script/ChangeLog new file mode 100644 index 000000000000..89bd9e6e4fbd --- /dev/null +++ b/sys-apps/hibernate-script/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for sys-apps/hibernate-script +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hibernate-script/ChangeLog,v 1.1 2004/11/12 18:58:43 brix Exp $ + +*hibernate-script-1.00 (12 Nov 2004) + + 12 Nov 2004; Henrik Brix Andersen <brix@gentoo.org> +metadata.xml, + +hibernate-script-1.00.ebuild: + Initial check-in. Thank you to all who commented on bug #52019. + diff --git a/sys-apps/hibernate-script/Manifest b/sys-apps/hibernate-script/Manifest new file mode 100644 index 000000000000..e8e579afd36f --- /dev/null +++ b/sys-apps/hibernate-script/Manifest @@ -0,0 +1,4 @@ +MD5 86554ec0d9835538f5dc142d50c63af1 hibernate-script-1.00.ebuild 1230 +MD5 a1a094b680e1c7b6da0b8f6452258f59 ChangeLog 428 +MD5 93f5bba7043e57c7092196362f2b494f metadata.xml 255 +MD5 ebc451ea5a78f44953d9595e446ae1f0 files/digest-hibernate-script-1.00 72 diff --git a/sys-apps/hibernate-script/files/digest-hibernate-script-1.00 b/sys-apps/hibernate-script/files/digest-hibernate-script-1.00 new file mode 100644 index 000000000000..e9bdcad741ea --- /dev/null +++ b/sys-apps/hibernate-script/files/digest-hibernate-script-1.00 @@ -0,0 +1 @@ +MD5 ab4bd0dd2dafd560174802f6ef288ad5 hibernate-script-1.00.tar.gz 42488 diff --git a/sys-apps/hibernate-script/hibernate-script-1.00.ebuild b/sys-apps/hibernate-script/hibernate-script-1.00.ebuild new file mode 100644 index 000000000000..28f6d87054f7 --- /dev/null +++ b/sys-apps/hibernate-script/hibernate-script-1.00.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hibernate-script/hibernate-script-1.00.ebuild,v 1.1 2004/11/12 18:58:43 brix Exp $ + +# The following works with both pre-releases and releases +MY_P=${PN}-${PV/_/-} +S=${WORKDIR}/${MY_P} + +DESCRIPTION="Hibernate script supporting both suspend-to-ram and suspend-to-disk" + +HOMEPAGE="http://softwaresuspend.berlios.de" +SRC_URI="http://download.berlios.de/softwaresuspend/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +IUSE="" + +DEPEND="sys-apps/sed" +RDEPEND="" + +src_unpack() { + unpack ${A} + + # use /sys/power/state instead of swsusp2 + sed -i "s:^\(UseSwsusp2\):# \1:" ${S}/hibernate.conf + sed -i "s:^\(Reboot\):# \1:" ${S}/hibernate.conf + sed -i "s:^\(EnableEscape\):# \1:" ${S}/hibernate.conf + sed -i "s:^\(DefaultConsoleLevel\):# \1:" ${S}/hibernate.conf + sed -i "s:^# \(UseSysfsPowerState\):\1:" ${S}/hibernate.conf +} + +src_install() { + BASE_DIR=${D} PREFIX=/usr MAN_DIR=${D}/usr/share/man ${S}/install.sh + + # other ebuilds can install scriplets to this dir + keepdir /etc/hibernate/scriptlets.d/ + + dodoc CHANGELOG README SCRIPTLET-API TODO +} diff --git a/sys-apps/hibernate-script/metadata.xml b/sys-apps/hibernate-script/metadata.xml new file mode 100644 index 000000000000..a7e8c888f719 --- /dev/null +++ b/sys-apps/hibernate-script/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>kernel</herd> +<maintainer> + <email>brix@gentoo.org</email> + <name>Henrik Brix Andersen</name> +</maintainer> +</pkgmetadata> |