diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2008-01-07 09:04:41 +0000 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2008-01-07 09:04:41 +0000 |
commit | 2bed49642c9fab083f81387d558deb0c632edc0e (patch) | |
tree | 4106298714b915adbefe8328a2b01d7ca3a4d288 /sys-power | |
parent | Fix for goffice-0.6 (#203979) and SX crashes (#204473). (diff) | |
download | gentoo-2-2bed49642c9fab083f81387d558deb0c632edc0e.tar.gz gentoo-2-2bed49642c9fab083f81387d558deb0c632edc0e.tar.bz2 gentoo-2-2bed49642c9fab083f81387d558deb0c632edc0e.zip |
Cleanup
(Portage version: 2.1.4_rc14)
Diffstat (limited to 'sys-power')
-rw-r--r-- | sys-power/hibernate-script/ChangeLog | 6 | ||||
-rw-r--r-- | sys-power/hibernate-script/files/digest-hibernate-script-1.95-r2 | 6 | ||||
-rw-r--r-- | sys-power/hibernate-script/hibernate-script-1.95-r2.ebuild | 74 |
3 files changed, 5 insertions, 81 deletions
diff --git a/sys-power/hibernate-script/ChangeLog b/sys-power/hibernate-script/ChangeLog index d55237ca6ebd..c1933b0ff79d 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-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/hibernate-script/ChangeLog,v 1.74 2008/01/07 06:44:25 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-power/hibernate-script/ChangeLog,v 1.75 2008/01/07 09:04:40 alonbl Exp $ + + 07 Jan 2008; Alon Bar-Lev <alonbl@gentoo.org> + -hibernate-script-1.95-r2.ebuild: + Cleanup 07 Jan 2008; Joseph Jezak <josejx@gentoo.org> hibernate-script-1.97-r4.ebuild: diff --git a/sys-power/hibernate-script/files/digest-hibernate-script-1.95-r2 b/sys-power/hibernate-script/files/digest-hibernate-script-1.95-r2 deleted file mode 100644 index e1140fc1b55a..000000000000 --- a/sys-power/hibernate-script/files/digest-hibernate-script-1.95-r2 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 003b374a04106c36915ac61a1e2ccf0c hibernate-script-1.95-patches-2.tar.bz2 1609 -RMD160 f98fc6514d2ba2a861e9146e0fe65e7f27572342 hibernate-script-1.95-patches-2.tar.bz2 1609 -SHA256 5bdcfe74e91fa26d58102f95e15453c2df3a7ff66213c2d53aa265569a554e8f hibernate-script-1.95-patches-2.tar.bz2 1609 -MD5 026a7a8992da4fe56fb19530df998806 hibernate-script-1.95.tar.gz 74954 -RMD160 032cb97c355248640107e779f99ad5a86fb74846 hibernate-script-1.95.tar.gz 74954 -SHA256 e0c73cd1c3af2c0f409dba07e6fbd86c23150cfe77c4f9286ce239aedbe0a123 hibernate-script-1.95.tar.gz 74954 diff --git a/sys-power/hibernate-script/hibernate-script-1.95-r2.ebuild b/sys-power/hibernate-script/hibernate-script-1.95-r2.ebuild deleted file mode 100644 index 1bc54ec8586b..000000000000 --- a/sys-power/hibernate-script/hibernate-script-1.95-r2.ebuild +++ /dev/null @@ -1,74 +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.95-r2.ebuild,v 1.5 2007/11/12 10:44:17 alonbl Exp $ - -inherit eutils - -PATCH_VERSION="2" - -DESCRIPTION="Hibernate script supporting multiple suspend methods" -HOMEPAGE="http://www.suspend2.net/" -SRC_URI="http://www.suspend2.net/downloads/all/${P}.tar.gz - mirror://gentoo/${P}-patches-${PATCH_VERSION}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" - -IUSE="vim-syntax" - -DEPEND="" -RDEPEND="" - -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 - - insinto /etc/logrotate.d - newins "${S}"/logrotate.d-hibernate-script hibernate-script -} - -pkg_postinst() { - elog - elog "You should run the following command to invalidate" - elog "suspend 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." - elog - elog "Starting with hibernate-script-1.90 the configuration files have" - elog "been reordered and split into method specific files. Make sure you" - elog "update your /etc/hibernate/ configuration files accordingly." - elog -} |