diff options
author | Jochen Maes <sejo@gentoo.org> | 2004-11-17 14:16:01 +0000 |
---|---|---|
committer | Jochen Maes <sejo@gentoo.org> | 2004-11-17 14:16:01 +0000 |
commit | b4fbea80de63f2f9b379e0b4a60935002c3d97d5 (patch) | |
tree | 0cdee369dc0a509ccd8dd1cf39957fac2116ede0 /app-laptop | |
parent | force MAKEOPTS=-j1; remove old version (Manifest recommit) (diff) | |
download | gentoo-2-b4fbea80de63f2f9b379e0b4a60935002c3d97d5.tar.gz gentoo-2-b4fbea80de63f2f9b379e0b4a60935002c3d97d5.tar.bz2 gentoo-2-b4fbea80de63f2f9b379e0b4a60935002c3d97d5.zip |
new version 0.6.6. :-)
Diffstat (limited to 'app-laptop')
-rw-r--r-- | app-laptop/pbbuttonsd/Manifest | 8 | ||||
-rw-r--r-- | app-laptop/pbbuttonsd/files/digest-pbbuttonsd-0.6.6 | 1 | ||||
-rw-r--r-- | app-laptop/pbbuttonsd/pbbuttonsd-0.6.6.ebuild | 43 |
3 files changed, 49 insertions, 3 deletions
diff --git a/app-laptop/pbbuttonsd/Manifest b/app-laptop/pbbuttonsd/Manifest index 186bcc5ff213..5e28f5e7cc72 100644 --- a/app-laptop/pbbuttonsd/Manifest +++ b/app-laptop/pbbuttonsd/Manifest @@ -1,14 +1,16 @@ +MD5 dc19cf72fc32c587d07ca47bdaa29f7f ChangeLog 6283 MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164 MD5 01f5e8033e946275a5c81ec9675a593d pbbuttonsd-0.5.11.ebuild 1620 MD5 49762f48c7947b0a1b275488167071e0 pbbuttonsd-0.6.1.ebuild 1184 MD5 92aab852b0baca6dc852f7f56e185673 pbbuttonsd-0.6.5.ebuild 1224 -MD5 dc19cf72fc32c587d07ca47bdaa29f7f ChangeLog 6283 +MD5 13531dd46d171f106005bd0ae16bd8ac pbbuttonsd-0.6.6.ebuild 1226 MD5 e3ce7dc625651b0249b338997267d288 files/digest-pbbuttonsd-0.5.11 69 MD5 a1afb13bbd6ccca4f348829ea9825df6 files/digest-pbbuttonsd-0.6.1 68 -MD5 09293f5559523b7e2e8a87e6b43af415 files/digest-pbbuttonsd-0.6.5 68 MD5 1f7eb1378520b49ca348255b4c449224 files/pbbuttonsd-0.5.11-compat.patch 1123 MD5 25e2467e31c724e2756a6a2e49877119 files/pbbuttonsd-0.6.1-compat.patch 752 -MD5 b11792be9a7da132df93b09825c07496 files/pbbuttonsd-0.6.5-compat.patch 843 MD5 831fe80c3eeb273f204b8a41f7ac2810 files/pbbuttonsd-compat.patch 1070 MD5 e87049121a8371a7173cb9aa7c5b167d files/pbbuttonsd.rc6 444 +MD5 09293f5559523b7e2e8a87e6b43af415 files/digest-pbbuttonsd-0.6.5 68 +MD5 b11792be9a7da132df93b09825c07496 files/pbbuttonsd-0.6.5-compat.patch 843 MD5 3f1fa06cde822b9aaa0b6ce79147c65e files/pbbuttonsd-0.6.5-backlight.patch 8318 +MD5 72caa2adac6c8260c57c0ae15cc259f3 files/digest-pbbuttonsd-0.6.6 68 diff --git a/app-laptop/pbbuttonsd/files/digest-pbbuttonsd-0.6.6 b/app-laptop/pbbuttonsd/files/digest-pbbuttonsd-0.6.6 new file mode 100644 index 000000000000..f9dffc869040 --- /dev/null +++ b/app-laptop/pbbuttonsd/files/digest-pbbuttonsd-0.6.6 @@ -0,0 +1 @@ +MD5 dd578afa5252206db0bdd3054064e9a9 pbbuttonsd-0.6.6.tar.gz 365132 diff --git a/app-laptop/pbbuttonsd/pbbuttonsd-0.6.6.ebuild b/app-laptop/pbbuttonsd/pbbuttonsd-0.6.6.ebuild new file mode 100644 index 000000000000..4d64ad887e86 --- /dev/null +++ b/app-laptop/pbbuttonsd/pbbuttonsd-0.6.6.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-laptop/pbbuttonsd/pbbuttonsd-0.6.6.ebuild,v 1.1 2004/11/17 14:16:01 sejo Exp $ + +inherit eutils + +DESCRIPTION="program to map special Powerbook/iBook keys" +HOMEPAGE="http://pbbuttons.sf.net" +SRC_URI="mirror://sourceforge/pbbuttons/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~ppc" +IUSE="" + +DEPEND="virtual/libc + >=sys-apps/baselayout-1.8.6.12-r1" +RDEPEND="" + +src_unpack() { + unpack ${A} +} + +src_compile() { + econf || die "sorry, failed to configure pbbuttonsd" + make || die "sorry, failed to compile pbbuttonsd" +} + +src_install() { + dodir /etc/power + make DESTDIR=${D} install || die "failed to install" + exeinto /etc/init.d + newexe ${FILESDIR}/pbbuttonsd.rc6 pbbuttonsd + dodoc README +} + +pkg_postinst() { + einfo "This version of pbbuttonsd can replace PMUD functionality." + einfo "If you want PMUD installed and running, you should set" + einfo "replace_pmud=no in /etc/pbbuttonsd.conf. Otherwise you can" + einfo "try setting replace_pmud=yes in /etc/pbbuttonsd.conf and" + einfo "disabling PMUD" +} |