diff options
author | Calum Selkirk <cselkirk@gentoo.org> | 2002-07-28 16:08:09 +0000 |
---|---|---|
committer | Calum Selkirk <cselkirk@gentoo.org> | 2002-07-28 16:08:09 +0000 |
commit | c1b365c2e6a108dff8d27544bfbc6f2a26c93ecd (patch) | |
tree | aa903d83230941bd233bcbfc1d82571c7e18121d /sys-apps | |
parent | Version bump (diff) | |
download | historical-c1b365c2e6a108dff8d27544bfbc6f2a26c93ecd.tar.gz historical-c1b365c2e6a108dff8d27544bfbc6f2a26c93ecd.tar.bz2 historical-c1b365c2e6a108dff8d27544bfbc6f2a26c93ecd.zip |
New ebuild due to bugfixes upstream.
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/pbbuttonsd/ChangeLog | 13 | ||||
-rw-r--r-- | sys-apps/pbbuttonsd/files/digest-pbbuttonsd-0.4.10a | 1 | ||||
-rw-r--r-- | sys-apps/pbbuttonsd/pbbuttonsd-0.4.10a.ebuild | 35 |
3 files changed, 46 insertions, 3 deletions
diff --git a/sys-apps/pbbuttonsd/ChangeLog b/sys-apps/pbbuttonsd/ChangeLog index 9bed02b160ad..4e394f42de91 100644 --- a/sys-apps/pbbuttonsd/ChangeLog +++ b/sys-apps/pbbuttonsd/ChangeLog @@ -1,6 +1,13 @@ -# ChangeLog for sys-apps/pbbuttonsd -# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pbbuttonsd/ChangeLog,v 1.2 2002/07/14 19:20:18 aliz Exp $ +# ChangeLog for sys-apps/pbbuttonsd Copyright 2002 Gentoo Technologies, Inc.; +# Distributed under the GPL $Header: +# /home/cvsroot/gentoo-x86/sys-apps/pbbuttonsd/ChangeLog,v 1.2 2002/07/14 +# 19:20:18 aliz Exp $ + +*pbbuttonsd-0.4.10a.ebuild (28 Jul 2002) + + 28 Jul 2002; Calum Selkirk <cselkirk@gentoo.org> pbbuttonsd-0.4.10a.ebuild : + + New ebuild due to bugfixes upstream. *pbbuttonsd-0.4.9-r2.ebuild (14 July 2002) diff --git a/sys-apps/pbbuttonsd/files/digest-pbbuttonsd-0.4.10a b/sys-apps/pbbuttonsd/files/digest-pbbuttonsd-0.4.10a new file mode 100644 index 000000000000..cd4700362d4b --- /dev/null +++ b/sys-apps/pbbuttonsd/files/digest-pbbuttonsd-0.4.10a @@ -0,0 +1 @@ +MD5 97c5d5888346fcfd865fe517e065f3e7 pbbuttonsd-0.4.10a.tar.gz 178197 diff --git a/sys-apps/pbbuttonsd/pbbuttonsd-0.4.10a.ebuild b/sys-apps/pbbuttonsd/pbbuttonsd-0.4.10a.ebuild new file mode 100644 index 000000000000..fc137ba1277f --- /dev/null +++ b/sys-apps/pbbuttonsd/pbbuttonsd-0.4.10a.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pbbuttonsd/pbbuttonsd-0.4.10a.ebuild,v 1.1 2002/07/28 16:08:09 cselkirk Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="PBButtons is a PPC-only program to map special Powerbook/iBook keys in Linux" +SRC_URI="http://www.cymes.de/members/joker/projects/pbbuttons/tar/${P}.tar.gz" +HOMEPAGE="http://www.cymes.de/members/joker/projects/pbbuttons/pbbuttons.html" +KEYWORDS="ppc" +DEPEND="virtual/glibc" +RDEPEND="" +SLOT=0 +LICENSE=GPL + +pkg_setup() { + if [ ${ARCH} != "ppc" ] ; then + eerror "Sorry, this is a PPC only package." + die "Sorry, this as a PPC only pacakge." + fi +} + +src_compile() { + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc || die "sorry, ppc-only package" + make || die "sorry, failed to compile pbbuttons" +} + +src_install() { + + make sysconfdir=${D}/etc DESTDIR=${D} install || die "failed to install" + exeinto /etc/init.d ; newexe ${FILESDIR}/pbbuttonsd.rc5 pbbuttonsd + dodoc README COPYING + +} |