summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Huddleston <eradicator@gentoo.org>2004-03-15 02:32:41 +0000
committerJeremy Huddleston <eradicator@gentoo.org>2004-03-15 02:32:41 +0000
commitadc8c20187263c53922e97e9a9c357337f2ed7b2 (patch)
tree1ee70ef9d8fa66640839c03245d980c5b22fbb66 /media-sound/amsynth
parentInitial commit to close #22217. Ebuild by myself and Patrick Kursawe <phospha... (diff)
downloadhistorical-adc8c20187263c53922e97e9a9c357337f2ed7b2.tar.gz
historical-adc8c20187263c53922e97e9a9c357337f2ed7b2.tar.bz2
historical-adc8c20187263c53922e97e9a9c357337f2ed7b2.zip
Added patch from bug #44696 to fix missing declaration of pthread_kill.
Diffstat (limited to 'media-sound/amsynth')
-rw-r--r--media-sound/amsynth/ChangeLog6
-rw-r--r--media-sound/amsynth/Manifest7
-rw-r--r--media-sound/amsynth/amsynth-1.0.0.ebuild4
-rw-r--r--media-sound/amsynth/amsynth-1.0_rc4.ebuild4
-rw-r--r--media-sound/amsynth/files/amsynth-pthread.patch10
5 files changed, 25 insertions, 6 deletions
diff --git a/media-sound/amsynth/ChangeLog b/media-sound/amsynth/ChangeLog
index d00de711700f..539af4c464d7 100644
--- a/media-sound/amsynth/ChangeLog
+++ b/media-sound/amsynth/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-sound/amsynth
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/ChangeLog,v 1.6 2004/03/03 23:12:57 dholm Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/ChangeLog,v 1.7 2004/03/15 02:32:41 eradicator Exp $
+
+ 14 Mar 2004; Jeremy Huddleston <eradicator@gentoo.org> amsynth-1.0.0.ebuild,
+ amsynth-1.0_rc4.ebuild, files/amsynth-pthread.patch:
+ Added patch from bug #44696 to fix missing declaration of pthread_kill.
04 Mar 2004; David Holm <dholm@gentoo.org> amsynth-1.0.0.ebuild:
Added to ~ppc.
diff --git a/media-sound/amsynth/Manifest b/media-sound/amsynth/Manifest
index d3743596f13d..0d32ff59955e 100644
--- a/media-sound/amsynth/Manifest
+++ b/media-sound/amsynth/Manifest
@@ -1,6 +1,7 @@
-MD5 aedda301ebbe8a907be110fa1a43629e ChangeLog 1071
-MD5 0a835dccd9c9daea99ed6ba38cf190a7 amsynth-1.0_rc4.ebuild 1588
+MD5 1e5d383e5c5b46b8b6522ea69ad54cd1 amsynth-1.0_rc4.ebuild 1629
+MD5 21d4d4b049ec1847d6042b95ca068589 amsynth-1.0.0.ebuild 1516
+MD5 f97607ce79950a472d1afea6338d4a77 ChangeLog 1285
MD5 3be4f6e757e3057184136a002b0165f9 metadata.xml 221
-MD5 af09541f410891b4036b4e2e5ffd2d83 amsynth-1.0.0.ebuild 1470
MD5 bec083e8e27d21ba34cb61070ac11fea files/digest-amsynth-1.0_rc4 67
+MD5 2f7dc56770343abd47f6fcc7bca6938e files/amsynth-pthread.patch 256
MD5 d7a734ec324ae5b115669d858666fb58 files/digest-amsynth-1.0.0 65
diff --git a/media-sound/amsynth/amsynth-1.0.0.ebuild b/media-sound/amsynth/amsynth-1.0.0.ebuild
index 6b036823afda..d02978361ad7 100644
--- a/media-sound/amsynth/amsynth-1.0.0.ebuild
+++ b/media-sound/amsynth/amsynth-1.0.0.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/amsynth-1.0.0.ebuild,v 1.2 2004/03/03 23:12:57 dholm Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/amsynth-1.0.0.ebuild,v 1.3 2004/03/15 02:32:41 eradicator Exp $
MY_P=${P/_rc/-rc}
MY_P=${MY_P/amsynth/amSynth}
@@ -31,6 +31,8 @@ src_unpack() {
sed -i "/#include <alsa\\/asoundlib.h>/i\\#define ALSA_PCM_OLD_HW_PARAMS_API 1\\" src/drivers/ALSAmmapAudioDriver.h
sed -i "/#include <alsa\\/asoundlib.h>/i\\#define ALSA_PCM_OLD_HW_PARAMS_API 1\\" src/drivers/ALSAAudioDriver.h
+
+ epatch ${FILESDIR}/${PN}-pthread.patch
}
src_compile() {
diff --git a/media-sound/amsynth/amsynth-1.0_rc4.ebuild b/media-sound/amsynth/amsynth-1.0_rc4.ebuild
index f4139973d6c2..f80a394baae6 100644
--- a/media-sound/amsynth/amsynth-1.0_rc4.ebuild
+++ b/media-sound/amsynth/amsynth-1.0_rc4.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/amsynth-1.0_rc4.ebuild,v 1.2 2004/03/03 04:11:26 eradicator Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/amsynth-1.0_rc4.ebuild,v 1.3 2004/03/15 02:32:41 eradicator Exp $
MY_P=${P/_rc/-rc}
MY_P=${MY_P/amsynth/amSynth}
@@ -31,6 +31,8 @@ src_unpack() {
sed -i "/#include <alsa\\/asoundlib.h>/i\\#define ALSA_PCM_OLD_HW_PARAMS_API 1\\" src/drivers/ALSAmmapAudioDriver.h
sed -i "/#include <alsa\\/asoundlib.h>/i\\#define ALSA_PCM_OLD_HW_PARAMS_API 1\\" src/drivers/ALSAAudioDriver.h
+
+ epatch ${FILESDIR}/${PN}-pthread.patch
}
src_compile() {
diff --git a/media-sound/amsynth/files/amsynth-pthread.patch b/media-sound/amsynth/files/amsynth-pthread.patch
new file mode 100644
index 000000000000..e0d9d6e20e6f
--- /dev/null
+++ b/media-sound/amsynth/files/amsynth-pthread.patch
@@ -0,0 +1,10 @@
+--- src/main.cc.old 2004-03-14 13:45:10.350579816 -0600
++++ src/main.cc 2004-03-14 13:45:39.107208144 -0600
+@@ -7,6 +7,7 @@
+
+ #include <gtk--/main.h>
+ #include <pthread.h>
++#include <signal.h>
+ #include <iostream>
+ #include <fstream>
+ #include <unistd.h>