diff options
author | Matt Keadle <mkeadle@gentoo.org> | 2002-10-10 00:56:45 +0000 |
---|---|---|
committer | Matt Keadle <mkeadle@gentoo.org> | 2002-10-10 00:56:45 +0000 |
commit | d2bcb705fb218df16059a07684c122cb9a98e3d2 (patch) | |
tree | 8d52f0060fc15a7b922bb7af8da56db05b638c4f /x11-misc/bbappconf | |
parent | added -alpha (diff) | |
download | historical-d2bcb705fb218df16059a07684c122cb9a98e3d2.tar.gz historical-d2bcb705fb218df16059a07684c122cb9a98e3d2.tar.bz2 historical-d2bcb705fb218df16059a07684c122cb9a98e3d2.zip |
Revision bump to sure issues with gcc3.2
Diffstat (limited to 'x11-misc/bbappconf')
-rw-r--r-- | x11-misc/bbappconf/ChangeLog | 11 | ||||
-rw-r--r-- | x11-misc/bbappconf/bbappconf-0.0.1-r1.ebuild | 31 | ||||
-rw-r--r-- | x11-misc/bbappconf/files/bbappconf.patch | 36 | ||||
-rw-r--r-- | x11-misc/bbappconf/files/digest-bbappconf-0.0.1-r1 | 1 |
4 files changed, 78 insertions, 1 deletions
diff --git a/x11-misc/bbappconf/ChangeLog b/x11-misc/bbappconf/ChangeLog index fe61b79580c0..2f036856318c 100644 --- a/x11-misc/bbappconf/ChangeLog +++ b/x11-misc/bbappconf/ChangeLog @@ -1,6 +1,15 @@ # ChangeLog for x11-misc/bbappconf # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbappconf/ChangeLog,v 1.1 2002/07/28 03:51:44 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbappconf/ChangeLog,v 1.2 2002/10/10 00:56:45 mkeadle Exp $ + +*bbappconf-0.0.1-r1 (09 Oct 2002) + + 09 Oct 2002; Matt Keadle <mkeadle@gentoo.org> bbappconf-0.0.1-r1.ebuild + files/digest-bbappconf-0.0.1-r1 files/bbappconf.patch : + + Patched to fix compile errors with gcc3.2. Patch taken from an email from + Laurent Parenteau <laurent.parenteau@tr.cgocable.ca> to the Blackbox + maillist. *bbappconf-0.0.1 (27 Jul 2002) diff --git a/x11-misc/bbappconf/bbappconf-0.0.1-r1.ebuild b/x11-misc/bbappconf/bbappconf-0.0.1-r1.ebuild new file mode 100644 index 000000000000..c325cb524ea3 --- /dev/null +++ b/x11-misc/bbappconf/bbappconf-0.0.1-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbappconf/bbappconf-0.0.1-r1.ebuild,v 1.1 2002/10/10 00:56:45 mkeadle Exp $ + +S="${WORKDIR}/${P}-peak3" +DESCRIPTION="bbappconf is a utility that allows you to specify window properties in blackbox" +SRC_URI="http://bbtools.windsofstorm.net/sources/devel/${P}-peak3.tar.gz" +HOMEPAGE="http://bbtools.windsofstorm.net/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 sparc sparc64" + +DEPEND="virtual/blackbox" + +src_unpack() { + + unpack ${P}-peak3.tar.gz + cd ${S} + patch -p1 < ${FILESDIR}/bbappconf.patch +} + +src_compile() { + econf || die + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + dodoc AUTHORS BUGS ChangeLog COPYING NEWS README TODO +} diff --git a/x11-misc/bbappconf/files/bbappconf.patch b/x11-misc/bbappconf/files/bbappconf.patch new file mode 100644 index 000000000000..b4cf47d635a9 --- /dev/null +++ b/x11-misc/bbappconf/files/bbappconf.patch @@ -0,0 +1,36 @@ +diff -urN bbappconf-0.0.1-peak3/LinkedList.hh bbappconf-0.0.1-peak3-gcc-3.2/LinkedList.hh +--- bbappconf-0.0.1-peak3/LinkedList.hh 2000-10-11 13:58:32.000000000 -0400 ++++ bbappconf-0.0.1-peak3-gcc-3.2/LinkedList.hh 2002-10-08 22:50:21.000000000 -0400 +@@ -50,7 +50,7 @@ + __llist *list; + __llist_node *node; + +- friend __llist; ++ friend struct __llist; + + + protected: +@@ -73,7 +73,7 @@ + __llist_node *_first, *_last; + __llist *iterators; + +- friend __llist_iterator; ++ friend class __llist_iterator; + + + protected: +diff -urN bbappconf-0.0.1-peak3/Timer.hh bbappconf-0.0.1-peak3-gcc-3.2/Timer.hh +--- bbappconf-0.0.1-peak3/Timer.hh 1999-11-13 17:49:45.000000000 -0500 ++++ bbappconf-0.0.1-peak3-gcc-3.2/Timer.hh 2002-10-08 22:50:28.000000000 -0400 +@@ -47,7 +47,7 @@ + + + class BTimer { +- friend BaseDisplay; ++ friend class BaseDisplay; + private: + BaseDisplay *display; + TimeoutHandler *handler; + + + diff --git a/x11-misc/bbappconf/files/digest-bbappconf-0.0.1-r1 b/x11-misc/bbappconf/files/digest-bbappconf-0.0.1-r1 new file mode 100644 index 000000000000..1b4b67f8cc5e --- /dev/null +++ b/x11-misc/bbappconf/files/digest-bbappconf-0.0.1-r1 @@ -0,0 +1 @@ +MD5 d3972415511e9a783218110a932cbe5f bbappconf-0.0.1-peak3.tar.gz 80193 |