diff options
author | Caleb Tennis <caleb@gentoo.org> | 2004-08-10 23:35:15 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2004-08-10 23:35:15 +0000 |
commit | 670c83dbf0b286436deb47bd43f2037a422d34d9 (patch) | |
tree | 700c752c92263b3e5671282447f5c9898da6ee0a /media-libs/tunepimp | |
parent | Moving glabels to app-office (diff) | |
download | gentoo-2-670c83dbf0b286436deb47bd43f2037a422d34d9.tar.gz gentoo-2-670c83dbf0b286436deb47bd43f2037a422d34d9.tar.bz2 gentoo-2-670c83dbf0b286436deb47bd43f2037a422d34d9.zip |
Add a patch to make it compile
Diffstat (limited to 'media-libs/tunepimp')
-rw-r--r-- | media-libs/tunepimp/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/tunepimp/files/thread.patch | 10 | ||||
-rw-r--r-- | media-libs/tunepimp/tunepimp-0.3.0.ebuild | 5 |
3 files changed, 18 insertions, 2 deletions
diff --git a/media-libs/tunepimp/ChangeLog b/media-libs/tunepimp/ChangeLog index 116a18761642..7fb272d14c90 100644 --- a/media-libs/tunepimp/ChangeLog +++ b/media-libs/tunepimp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/tunepimp # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/tunepimp/ChangeLog,v 1.1 2004/08/10 20:56:51 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/tunepimp/ChangeLog,v 1.2 2004/08/10 23:35:15 caleb Exp $ + + 10 Aug 2004; Caleb Tennis <caleb@gentoo.org> +files/thread.patch: + Add a patch to make it compile *tunepimp-0.3.0 (10 Aug 2004) diff --git a/media-libs/tunepimp/files/thread.patch b/media-libs/tunepimp/files/thread.patch new file mode 100644 index 000000000000..883ff383f2e4 --- /dev/null +++ b/media-libs/tunepimp/files/thread.patch @@ -0,0 +1,10 @@ +--- lib/threads/posix/thread.cpp.orig 2004-08-10 18:29:40.072865000 -0500 ++++ lib/threads/posix/thread.cpp 2004-08-10 18:29:46.896827600 -0500 +@@ -29,6 +29,7 @@ + #include <string.h> + #include <sched.h> + #include "thread.h" ++#include <signal.h> + + #define DB printf("%s:%d\n", __FILE__, __LINE__); + diff --git a/media-libs/tunepimp/tunepimp-0.3.0.ebuild b/media-libs/tunepimp/tunepimp-0.3.0.ebuild index b3f32e535a0e..04b662bb66be 100644 --- a/media-libs/tunepimp/tunepimp-0.3.0.ebuild +++ b/media-libs/tunepimp/tunepimp-0.3.0.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/tunepimp/tunepimp-0.3.0.ebuild,v 1.3 2004/08/10 21:22:40 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/tunepimp/tunepimp-0.3.0.ebuild,v 1.4 2004/08/10 23:35:15 caleb Exp $ + +inherit eutils IUSE="flac mad oggvorbis readline" @@ -25,6 +27,7 @@ DEPEND="${RDEPEND} S=${WORKDIR}/lib${P} src_compile() { + epatch ${FILESDIR}/thread.patch econf || die "configure failed" emake || die "emake failed" } |