diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-01-18 18:16:25 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-01-18 18:16:25 +0000 |
commit | eecd4e6bf18c926303af5003c30b4600fa805e9b (patch) | |
tree | ca053a48699c5ddd68f3cfcf5ee3dcd5cdefe7e8 /sys-power | |
parent | cleanup (diff) | |
download | historical-eecd4e6bf18c926303af5003c30b4600fa805e9b.tar.gz historical-eecd4e6bf18c926303af5003c30b4600fa805e9b.tar.bz2 historical-eecd4e6bf18c926303af5003c30b4600fa805e9b.zip |
Version bump #255311 by Daniel Pielmeier.
Package-Manager: portage-2.2_rc20/cvs/Linux 2.6.28 x86_64
Diffstat (limited to 'sys-power')
-rw-r--r-- | sys-power/nvram-wakeup/ChangeLog | 10 | ||||
-rw-r--r-- | sys-power/nvram-wakeup/nvram-wakeup-0.99b.ebuild | 70 |
2 files changed, 78 insertions, 2 deletions
diff --git a/sys-power/nvram-wakeup/ChangeLog b/sys-power/nvram-wakeup/ChangeLog index dc9676c076d2..a0a1f4596ba4 100644 --- a/sys-power/nvram-wakeup/ChangeLog +++ b/sys-power/nvram-wakeup/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-power/nvram-wakeup -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/nvram-wakeup/ChangeLog,v 1.7 2008/10/14 15:05:13 flameeyes Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-power/nvram-wakeup/ChangeLog,v 1.8 2009/01/18 18:16:25 vapier Exp $ + +*nvram-wakeup-0.99b (18 Jan 2009) + + 18 Jan 2009; Mike Frysinger <vapier@gentoo.org> + +nvram-wakeup-0.99b.ebuild: + Version bump #255311 by Daniel Pielmeier. 14 Oct 2008; Diego Pettenò <flameeyes@gentoo.org> nvram-wakeup-0.97_p863.ebuild: diff --git a/sys-power/nvram-wakeup/nvram-wakeup-0.99b.ebuild b/sys-power/nvram-wakeup/nvram-wakeup-0.99b.ebuild new file mode 100644 index 000000000000..349a7cec69c0 --- /dev/null +++ b/sys-power/nvram-wakeup/nvram-wakeup-0.99b.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-power/nvram-wakeup/nvram-wakeup-0.99b.ebuild,v 1.1 2009/01/18 18:16:25 vapier Exp $ + +inherit flag-o-matic + +MY_P=${P%_p*} +[[ ${PV} == *_p* ]] && REV=${P#*_p} || unset REV +MY_P=${MY_P/e} +DESCRIPTION="read and write the WakeUp time in the BIOS" +HOMEPAGE="http://sourceforge.net/projects/nvram-wakeup" +SRC_URI="mirror://sourceforge/nvram-wakeup/${MY_P}.tar.gz + ${REV+http://nvram-wakeup.svn.sourceforge.net/viewvc/*checkout*/nvram-wakeup/trunk/nvram-wakeup/nvram-wakeup-mb.c?revision=${REV}}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" +[[ -n ${REV} ]] && RESTRICT="mirror" #168114 + +DEPEND="nls? ( sys-devel/gettext )" +RDEPEND="" + +S=${WORKDIR}/${MY_P} + +src_unpack() { + unpack ${MY_P}.tar.gz + if [[ -n ${REV} ]] ; then + cp "${DISTDIR}"/nvram-wakeup-mb.c?revision=${REV} "${S}"/nvram-wakeup-mb.c || die + fi + cd "${S}" + use nls || epatch "${FILESDIR}"/${PN}-0.97-nonls.patch + # Need to be careful with CFLAGS since this could eat your bios + strip-flags + sed -i \ + -e '/^CFLAGS/s:= -O2 :+= $(CPPFLAGS) :' \ + Makefile || die "setting CFLAGS" +} + +src_install() { + emake \ + prefix="${D}"/usr \ + MANDIR="${D}"/usr/share/man \ + DOCDIR="${D}"/usr/share/doc/${PF} \ + install || die + + dodoc "${D}"/usr/bin/vdrshutdown + rm -f "${D}"/usr/bin/vdrshutdown + dodoc set_timer + + rm -f "${D}"/usr/sbin/time + rm -f "${D}"/usr/share/man/man*/time.8* + + prepalldocs +} + +pkg_postinst() { + echo + ewarn "WARNING:" + ewarn "This program writes into the NVRAM (used by BIOS to store the CMOS" + ewarn "settings). This is DANGEROUS. Do it at your own risk. Neither the" + ewarn "author of this program (nvram-wakeup) nor anyone else can be made" + ewarn "responsible to any damage made by this program in any way." + ewarn "(The worst case happened to me is that on reboot the BIOS noticed the" + ewarn "illegal contents of the nvram and set everything to default values." + ewarn "But this doesn't mean that you can't destroy even your whole computer.)" + echo + ewarn " YOU HAVE BEEN WARNED, HAVE A NICE DAY" + echo +} |