Update xmms-nebulus to 0.8.0.
Based on patch provided by Zafer Aydogan via private mail. pkgsrc changes: * Marked as DESTDIR ready. ChangeLog: Jan 08 2007 Pascal Brochart <pbrochart@tuxfamily.org> * v 0.8.0: Rewriting of the glthreads effects. Use mutex when really created (fix deadlock). Fix memory leak with SDL_ttf. New translation (pt). Pause and unpause display works again. Aug 18 2004 Pascal Brochart <pbrochart@tuxfamily.org> * v 0.7.0: Bug fixes. Add sinus wave to spectrum analyzer. Use GL_TRIANGLES instead of GL_LINE_STRIP in glthreads. New translations (fr fr_FR).
This commit is contained in:
parent
7f1c0e8888
commit
ad81919a1b
5 changed files with 52 additions and 10 deletions
|
@ -1,8 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.16 2006/06/12 16:28:05 wiz Exp $
|
||||
# $NetBSD: Makefile,v 1.17 2008/03/16 12:35:05 obache Exp $
|
||||
#
|
||||
|
||||
DISTNAME= xmms-nebulus-0.6.0
|
||||
PKGREVISION= 5
|
||||
DISTNAME= xmms-nebulus-0.8.0
|
||||
CATEGORIES= xmms audio
|
||||
MASTER_SITES= http://nebulus.tuxfamily.org/
|
||||
EXTRACT_SUFX= .tar.bz2
|
||||
|
@ -11,9 +10,14 @@ MAINTAINER= pkgsrc-users@NetBSD.org
|
|||
HOMEPAGE= http://nebulus.tuxfamily.org/
|
||||
COMMENT= Xmms plugin that uses OpenGL
|
||||
|
||||
USE_LIBTOOL= YES
|
||||
GNU_CONFIGURE= YES
|
||||
PKG_DESTDIR_SUPPORT= user-destdir
|
||||
|
||||
USE_LIBTOOL= YES
|
||||
USE_PKGLOCALEDIR= YES
|
||||
USE_TOOLS+= msgfmt
|
||||
GNU_CONFIGURE= YES
|
||||
|
||||
.include "../../audio/xmms/buildlink3.mk"
|
||||
.include "../../devel/SDL/buildlink3.mk"
|
||||
.include "../../devel/gettext-lib/buildlink3.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,2 +1,5 @@
|
|||
@comment $NetBSD: PLIST,v 1.3 2004/09/22 08:09:19 jlam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.4 2008/03/16 12:35:05 obache Exp $
|
||||
lib/xmms/Visualization/libnebulus.la
|
||||
share/locale/fr/LC_MESSAGES/xmms-nebulus.mo
|
||||
share/locale/fr_FR/LC_MESSAGES/xmms-nebulus.mo
|
||||
share/locale/pt/LC_MESSAGES/xmms-nebulus.mo
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
$NetBSD: distinfo,v 1.3 2005/02/23 20:39:55 agc Exp $
|
||||
$NetBSD: distinfo,v 1.4 2008/03/16 12:35:05 obache Exp $
|
||||
|
||||
SHA1 (xmms-nebulus-0.6.0.tar.bz2) = 8f156d3e36ee6e970d8fd2130a54ca74e34c6b6b
|
||||
RMD160 (xmms-nebulus-0.6.0.tar.bz2) = 5074a3bd905026a121aed3ca172913181301e810
|
||||
Size (xmms-nebulus-0.6.0.tar.bz2) = 437870 bytes
|
||||
SHA1 (xmms-nebulus-0.8.0.tar.bz2) = 341bd75b9f38727c2891102815f1608852b81fdc
|
||||
RMD160 (xmms-nebulus-0.8.0.tar.bz2) = 2f5f4e20919ca757bd96e3388b39fc21d6fd8ada
|
||||
Size (xmms-nebulus-0.8.0.tar.bz2) = 532050 bytes
|
||||
SHA1 (patch-aa) = 57462f08d0a7ae5ac4c86d1458a47576c2502463
|
||||
SHA1 (patch-ab) = 0333ccdf8d7b9580c195f6ff1d3be2ddf2302234
|
||||
|
|
17
audio/xmms-nebulus/patches/patch-aa
Normal file
17
audio/xmms-nebulus/patches/patch-aa
Normal file
|
@ -0,0 +1,17 @@
|
|||
$NetBSD: patch-aa,v 1.1 2008/03/16 12:35:05 obache Exp $
|
||||
|
||||
Pull in locale.h for setlocale
|
||||
|
||||
--- src/config.c.orig 2007-01-02 12:32:01.000000000 +0000
|
||||
+++ src/config.c
|
||||
@@ -6,7 +6,9 @@
|
||||
#include <string.h>
|
||||
#include <libintl.h>
|
||||
#include <nebulus.h>
|
||||
-
|
||||
+#ifdef HAVE_LOCALE_H
|
||||
+#include <locale.h>
|
||||
+#endif
|
||||
|
||||
void
|
||||
priority_value_changed (GtkWidget *w, int *changed_value)
|
16
audio/xmms-nebulus/patches/patch-ab
Normal file
16
audio/xmms-nebulus/patches/patch-ab
Normal file
|
@ -0,0 +1,16 @@
|
|||
$NetBSD: patch-ab,v 1.1 2008/03/16 12:35:05 obache Exp $
|
||||
|
||||
Pull in locale.h for setlocale
|
||||
|
||||
--- src/nebulus.c.orig 2007-01-07 14:11:09.000000000 +0000
|
||||
+++ src/nebulus.c
|
||||
@@ -37,6 +37,9 @@
|
||||
#include <xmms/configfile.h>
|
||||
#include <xmms/util.h>
|
||||
#include "nebulus.h"
|
||||
+#ifdef HAVE_LOCALE_H
|
||||
+#include <locale.h>
|
||||
+#endif
|
||||
|
||||
gint32 loudness = 0, too_long;
|
||||
gint beat = 0, beat_compteur = 0;
|
Loading…
Reference in a new issue