summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Brix Andersen <brix@gentoo.org>2006-06-05 11:44:08 +0000
committerHenrik Brix Andersen <brix@gentoo.org>2006-06-05 11:44:08 +0000
commitf5332f0a44dcc82bbd9fdb8bab07b569c83e8d13 (patch)
tree37ab6cfed307b8d5cedf1d74da824684fb7db8da /sys-power/hibernate-script/files
parentDo not install libpoppler-cairo.la. (diff)
downloadgentoo-2-f5332f0a44dcc82bbd9fdb8bab07b569c83e8d13.tar.gz
gentoo-2-f5332f0a44dcc82bbd9fdb8bab07b569c83e8d13.tar.bz2
gentoo-2-f5332f0a44dcc82bbd9fdb8bab07b569c83e8d13.zip
Version bump. Watch out for the configuration file changes!
(Portage version: 2.0.54-r2)
Diffstat (limited to 'sys-power/hibernate-script/files')
-rw-r--r--sys-power/hibernate-script/files/digest-hibernate-script-1.911
-rw-r--r--sys-power/hibernate-script/files/hibernate-script-1.91-gentoo.patch29
2 files changed, 30 insertions, 0 deletions
diff --git a/sys-power/hibernate-script/files/digest-hibernate-script-1.91 b/sys-power/hibernate-script/files/digest-hibernate-script-1.91
new file mode 100644
index 000000000000..529920ce4e40
--- /dev/null
+++ b/sys-power/hibernate-script/files/digest-hibernate-script-1.91
@@ -0,0 +1 @@
+MD5 f3c5275dd6053dc6423eb27032c81d4c hibernate-script-1.91.tar.gz 67112
diff --git a/sys-power/hibernate-script/files/hibernate-script-1.91-gentoo.patch b/sys-power/hibernate-script/files/hibernate-script-1.91-gentoo.patch
new file mode 100644
index 000000000000..2816289dac1b
--- /dev/null
+++ b/sys-power/hibernate-script/files/hibernate-script-1.91-gentoo.patch
@@ -0,0 +1,29 @@
+diff -urp hibernate-script-1.12/init.d/hibernate-cleanup.sh hibernate-script-1.12-gentoo/init.d/hibernate-cleanup.sh
+--- hibernate-script-1.12/init.d/hibernate-cleanup.sh 2005-10-02 07:54:23.000000000 +0200
++++ hibernate-script-1.12-gentoo/init.d/hibernate-cleanup.sh 2005-10-20 15:31:33.000000000 +0200
+@@ -1,4 +1,4 @@
+-#!/bin/sh
++#!/sbin/runscript
+
+ # This script invalidates any stale swsusp and Software Suspend 2 images. It
+ # searches all swap partitions on your machine, as well as Suspend2's
+@@ -66,9 +66,14 @@ check_filewriter_sig() {
+ esac
+ }
+
+-echo -n "Clearing Software Suspend 2 signatures... "
+-check_swap_sig
+-check_filewriter_sig
+-echo "done."
++depend() {
++ after localmount
++ before bootmisc
++}
+
+-exit 0
++start() {
++ ebegin "Clearing Software Suspend signatures"
++ check_swap_sig
++ check_filewriter_sig
++ eend
++}