summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Bar-Lev <alonbl@gentoo.org>2007-11-03 15:13:11 +0000
committerAlon Bar-Lev <alonbl@gentoo.org>2007-11-03 15:13:11 +0000
commit8547995b8f6636a8ddb44f02276a4415d75d2ffe (patch)
tree7cce25b6f29829add823c64ea30593f367f57428 /sys-power/hibernate-script
parentFix tuxonice filewriter issue, bug#197630, thanks Frittella Laurento for repo... (diff)
downloadgentoo-2-8547995b8f6636a8ddb44f02276a4415d75d2ffe.tar.gz
gentoo-2-8547995b8f6636a8ddb44f02276a4415d75d2ffe.tar.bz2
gentoo-2-8547995b8f6636a8ddb44f02276a4415d75d2ffe.zip
Cleanup
(Portage version: 2.1.3.17)
Diffstat (limited to 'sys-power/hibernate-script')
-rw-r--r--sys-power/hibernate-script/ChangeLog6
-rw-r--r--sys-power/hibernate-script/files/digest-hibernate-script-1.976
-rw-r--r--sys-power/hibernate-script/hibernate-script-1.97.ebuild72
3 files changed, 5 insertions, 79 deletions
diff --git a/sys-power/hibernate-script/ChangeLog b/sys-power/hibernate-script/ChangeLog
index 4644fc23b629..9653ba24f3dd 100644
--- a/sys-power/hibernate-script/ChangeLog
+++ b/sys-power/hibernate-script/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-power/hibernate-script
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/hibernate-script/ChangeLog,v 1.66 2007/11/03 15:08:58 alonbl Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/hibernate-script/ChangeLog,v 1.67 2007/11/03 15:13:10 alonbl Exp $
+
+ 03 Nov 2007; Alon Bar-Lev <alonbl@gentoo.org>
+ -hibernate-script-1.97.ebuild:
+ Cleanup
*hibernate-script-1.97-r1 (03 Nov 2007)
diff --git a/sys-power/hibernate-script/files/digest-hibernate-script-1.97 b/sys-power/hibernate-script/files/digest-hibernate-script-1.97
deleted file mode 100644
index 708229b00989..000000000000
--- a/sys-power/hibernate-script/files/digest-hibernate-script-1.97
+++ /dev/null
@@ -1,6 +0,0 @@
-MD5 e30a300bc9636367e3f905d718994e25 hibernate-script-1.97-patches-1.tar.bz2 2063
-RMD160 23aed791bd72fc51cbbde5f8bd459e30fa219413 hibernate-script-1.97-patches-1.tar.bz2 2063
-SHA256 8b4e8acf1ca521af5406ce5175077b14460f6252ecdccdd11ecb1257388215bb hibernate-script-1.97-patches-1.tar.bz2 2063
-MD5 c3551238a2fe8bbe7b0e20322d8e02a5 hibernate-script-1.97.tar.gz 81504
-RMD160 6346a098f0892e6cffd547b0b7d042a51f298bb2 hibernate-script-1.97.tar.gz 81504
-SHA256 8374bedc80206a6708c10d9814b92bebed3d9e4966c01c2d086e9e5b5646827c hibernate-script-1.97.tar.gz 81504
diff --git a/sys-power/hibernate-script/hibernate-script-1.97.ebuild b/sys-power/hibernate-script/hibernate-script-1.97.ebuild
deleted file mode 100644
index cf447c18ae1f..000000000000
--- a/sys-power/hibernate-script/hibernate-script-1.97.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/hibernate-script/hibernate-script-1.97.ebuild,v 1.1 2007/10/27 11:28:07 alonbl Exp $
-
-inherit eutils
-
-PATCH_VERSION="1"
-
-DESCRIPTION="Hibernate script supporting multiple suspend methods"
-HOMEPAGE="http://www.tuxonice.net/"
-SRC_URI="http://www.tuxonice.net/downloads/all/${P}.tar.gz
- mirror://gentoo/${P}-patches-${PATCH_VERSION}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-IUSE="logrotate vim-syntax"
-
-DEPEND="sys-apps/sed"
-RDEPEND="logrotate? ( app-admin/logrotate )
- !<media-gfx/splashutils-1.5.2"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # Our patches
- epatch "${WORKDIR}"/patches/*.patch
-}
-
-src_install() {
- BASE_DIR="${D}" \
- DISTRIBUTION="gentoo" \
- PREFIX="/usr" \
- MAN_DIR="${D}/usr/share/man" \
- "${S}/install.sh" || die "Install failed"
-
- # hibernate-ram will default to using ram.conf
- dosym /usr/sbin/hibernate /usr/sbin/hibernate-ram
-
- newinitd "${S}"/init.d/hibernate-cleanup.sh hibernate-cleanup
-
- # other ebuilds can install scriplets to this dir
- keepdir /etc/hibernate/scriptlets.d/
-
- if use vim-syntax; then
- insinto /usr/share/vim/vimfiles/syntax
- doins hibernate.vim
- fi
-
- dodoc CHANGELOG README SCRIPTLET-API hibernate.vim
-
- if use logrotate; then
- insinto /etc/logrotate.d
- newins "${S}"/logrotate.d-hibernate-script hibernate-script
- fi
-}
-
-pkg_postinst() {
- elog
- elog "You should run the following command to invalidate suspend"
- elog "images on a clean boot."
- elog
- elog " # rc-update add hibernate-cleanup boot"
- elog
- elog "See /usr/share/doc/${PF}/README.* for further details."
- elog
- elog "Please note that you will need to manually emerge any utilities"
- elog "(radeontool, vbetool, ...) enabled in the configuration files,"
- elog "should you wish to use them."
-}