diff options
author | Heinrich Wendel <lanius@gentoo.org> | 2003-12-07 14:01:06 +0000 |
---|---|---|
committer | Heinrich Wendel <lanius@gentoo.org> | 2003-12-07 14:01:06 +0000 |
commit | eae7c4fcb1d19b186c17ffaedbd2891fad2ee57b (patch) | |
tree | 8929dbda92c8b9862f2e12a413eb7fb014b54c1b /x11-misc/bbcd | |
parent | New package: openbsd userland+kernel sources (diff) | |
download | historical-eae7c4fcb1d19b186c17ffaedbd2891fad2ee57b.tar.gz historical-eae7c4fcb1d19b186c17ffaedbd2891fad2ee57b.tar.bz2 historical-eae7c4fcb1d19b186c17ffaedbd2891fad2ee57b.zip |
added gcc 3.3 patch
Diffstat (limited to 'x11-misc/bbcd')
-rw-r--r-- | x11-misc/bbcd/ChangeLog | 4 | ||||
-rw-r--r-- | x11-misc/bbcd/Manifest | 9 | ||||
-rw-r--r-- | x11-misc/bbcd/bbcd-0.3.1-r1.ebuild | 3 | ||||
-rw-r--r-- | x11-misc/bbcd/files/bbcd-0.3.1-gcc3.3.patch | 20 |
4 files changed, 31 insertions, 5 deletions
diff --git a/x11-misc/bbcd/ChangeLog b/x11-misc/bbcd/ChangeLog index 52c2fa26f8ff..be412eb600d0 100644 --- a/x11-misc/bbcd/ChangeLog +++ b/x11-misc/bbcd/ChangeLog @@ -2,6 +2,10 @@ # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 # $Header + 07 Dec 2003; Heinrich Wendel <lanius@gentoo.org> bbcd-0.3.1-r1.ebuild, + files/bbcd-0.3.1-gcc3.3.patch: + added gcc 3.3 patch + 30 Oct 2003; Brandon Hale <tseng@gentoo.org> metadata.xml: Added metadata.xml diff --git a/x11-misc/bbcd/Manifest b/x11-misc/bbcd/Manifest index 9e8d2cb3e008..07df6eadd721 100644 --- a/x11-misc/bbcd/Manifest +++ b/x11-misc/bbcd/Manifest @@ -1,7 +1,8 @@ -MD5 063742415e9e15ff7db8e4131209ffb5 ChangeLog 708 -MD5 a6284d345969938c2d4b47ba0d8f3584 bbcd-0.3.1-r1.ebuild 728 -MD5 0ee476bef35494bcb9623de34474931e bbcd-0.3.1.ebuild 651 +MD5 ecb87f59e89a3da9c81e851878369c34 bbcd-0.3.1-r1.ebuild 768 +MD5 8f98e99949ba3271bd653ef2b04e920f ChangeLog 837 MD5 1fabf567822c7f832e84fc9ffdbfc635 metadata.xml 241 -MD5 17e5480cfc711d70db4bd28885335bb0 files/bbcd-0.3.1_0.3.1a.diff.gz 624 +MD5 bfb5f64e95be29349fc188999cb735ea bbcd-0.3.1.ebuild 652 MD5 b2d736f86e75b80b047b20f6a6a960af files/digest-bbcd-0.3.1 61 MD5 b2d736f86e75b80b047b20f6a6a960af files/digest-bbcd-0.3.1-r1 61 +MD5 e9344eb09d7760ae2319499a525e661b files/bbcd-0.3.1-gcc3.3.patch 547 +MD5 17e5480cfc711d70db4bd28885335bb0 files/bbcd-0.3.1_0.3.1a.diff.gz 624 diff --git a/x11-misc/bbcd/bbcd-0.3.1-r1.ebuild b/x11-misc/bbcd/bbcd-0.3.1-r1.ebuild index 652286aaac15..7d199006002d 100644 --- a/x11-misc/bbcd/bbcd-0.3.1-r1.ebuild +++ b/x11-misc/bbcd/bbcd-0.3.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbcd/bbcd-0.3.1-r1.ebuild,v 1.1 2003/08/20 05:04:27 iggy Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbcd/bbcd-0.3.1-r1.ebuild,v 1.2 2003/12/07 14:01:01 lanius Exp $ S=${WORKDIR}/${P} DESCRIPTION="Basic CD Player for blackbox wm" @@ -17,6 +17,7 @@ DEPEND="virtual/blackbox src_unpack() { unpack ${P}.tar.gz epatch ${FILESDIR}/${P}_${PV}a.diff.gz + epatch ${FILESDIR}/${P}-gcc3.3.patch } src_compile() { diff --git a/x11-misc/bbcd/files/bbcd-0.3.1-gcc3.3.patch b/x11-misc/bbcd/files/bbcd-0.3.1-gcc3.3.patch new file mode 100644 index 000000000000..906dabf616ca --- /dev/null +++ b/x11-misc/bbcd/files/bbcd-0.3.1-gcc3.3.patch @@ -0,0 +1,20 @@ +--- bbcd-0.3.1/Color.cc.org 2003-12-07 14:55:51.791299707 +0100 ++++ bbcd-0.3.1/Color.cc 2003-12-07 14:56:07.724194970 +0100 +@@ -32,6 +32,7 @@ + //#include <stdio.h> + //} + #include <iostream> ++#include <assert.h> + + + BColor::ColorCache BColor::colorcache; +--- bbcd-0.3.1/Texture.cc.org 2003-12-07 14:55:57.382507797 +0100 ++++ bbcd-0.3.1/Texture.cc 2003-12-07 14:56:41.924228114 +0100 +@@ -37,6 +37,7 @@ + #include "Texture.hh" + //#include "BaseDisplay.hh" + #include "Image.hh" ++#include <assert.h> + //#include "Screen.hh" + //#include "blackbox.hh" + |