summaryrefslogtreecommitdiffstats
path: root/main/audacious
diff options
context:
space:
mode:
authorWilliam Pitcock <nenolod@dereferenced.org>2011-01-12 05:08:58 -0600
committerWilliam Pitcock <nenolod@dereferenced.org>2011-01-12 05:17:12 -0600
commitcbef9bafe6a15d2efd596feaf1b45911df958dcc (patch)
tree6b444befc183a01e32f9ba7ad3e9559d2a6e9762 /main/audacious
parentd59723f5a7be7b47e478770775014a5e04bb3a61 (diff)
downloadaports-cbef9bafe6a15d2efd596feaf1b45911df958dcc.tar.bz2
aports-cbef9bafe6a15d2efd596feaf1b45911df958dcc.tar.xz
main/audacious: update to 2.4.3
Diffstat (limited to 'main/audacious')
-rw-r--r--main/audacious/APKBUILD8
-rw-r--r--main/audacious/uclibc-execinfo.patch23
2 files changed, 3 insertions, 28 deletions
diff --git a/main/audacious/APKBUILD b/main/audacious/APKBUILD
index b92bc582a..24a9f7995 100644
--- a/main/audacious/APKBUILD
+++ b/main/audacious/APKBUILD
@@ -1,7 +1,7 @@
# Contributor: William Pitcock <nenolod@dereferenced.org>
# Maintainer: William Pitcock <nenolod@dereferenced.org>
pkgname=audacious
-pkgver=2.4.2
+pkgver=2.4.3
pkgrel=0
pkgdesc="playlist-oriented media player with multiple interfaces"
url="http://audacious-media-player.org/"
@@ -11,8 +11,7 @@ depends=
makedepends="libmowgli-dev libmcs-dev libguess-dev gtk+-dev dbus-glib-dev libxml2-dev"
install=
subpackages="$pkgname-dev"
-source="http://distfiles.atheme.org/$pkgname-$pkgver.tgz
- uclibc-execinfo.patch"
+source="http://distfiles.atheme.org/$pkgname-$pkgver.tgz"
_builddir="$srcdir"/$pkgname-$pkgver
@@ -52,5 +51,4 @@ package() {
make DESTDIR="$pkgdir" install
}
-md5sums="bffdee15653595a7e9126246dee444e5 audacious-2.4.2.tgz
-b200db2ce2f3949deb4fdfa98f0b193d uclibc-execinfo.patch"
+md5sums="bd5d91900044a1159129c6feeea612c4 audacious-2.4.3.tgz"
diff --git a/main/audacious/uclibc-execinfo.patch b/main/audacious/uclibc-execinfo.patch
deleted file mode 100644
index 803f273ef..000000000
--- a/main/audacious/uclibc-execinfo.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- audacious-2.4.2.orig/src/libaudcore/audstrings.c
-+++ audacious-2.4.2/src/libaudcore/audstrings.c
-@@ -230,9 +230,8 @@
- return dirname;
- }
-
--#if defined(__GLIBC__) && (__GLIBC__ >= 2)
--#define HAVE_EXECINFO 1
--#include <execinfo.h>
-+#ifdef HAVE_EXECINFO_H
-+# include <execinfo.h>
- #endif
-
- /**
-@@ -258,7 +257,7 @@
-
- /* already UTF-8? */
- if (!g_utf8_validate(str, -1, NULL)) {
--#ifdef HAVE_EXECINFO
-+#ifdef HAVE_EXECINFO_H
- gint i, nsymbols;
- const gint nsymmax = 50;
- void *addrbuf[nsymmax];