mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
audio/ario: Updated for version 1.5.1.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
f048c42e96
commit
cfb688cf87
3 changed files with 47 additions and 4 deletions
|
@ -23,7 +23,7 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=ario
|
||||
VERSION=1.5
|
||||
VERSION=1.5.1
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -72,6 +72,10 @@ find . \
|
|||
# Check for Avahi
|
||||
if $(pkg-config --exists avahi-core); then AVAHI="enable" ; else AVAHI="disable" ; fi
|
||||
|
||||
# Starting with glib 2.32 it is now mandatory to
|
||||
# include glib.h instead of individual headers.
|
||||
patch -p1 -i $CWD/glib-single-include.patch
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="ario"
|
||||
VERSION="1.5"
|
||||
VERSION="1.5.1"
|
||||
HOMEPAGE="http://ario-player.sourceforge.net/"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/ario-player/ario-1.5.tar.gz"
|
||||
MD5SUM="5dac6cc8b8f12b0acc132d5ff7fc779f"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/ario-player/ario-1.5.1.tar.gz"
|
||||
MD5SUM="9b4072c0fe2aa72fb8103faac4dd3d69"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="libmpdclient libunique"
|
||||
|
|
39
audio/ario/glib-single-include.patch
Normal file
39
audio/ario/glib-single-include.patch
Normal file
|
@ -0,0 +1,39 @@
|
|||
Index: ario-1.5.1/src/ario-profiles.h
|
||||
===================================================================
|
||||
--- ario-1.5.1.orig/src/ario-profiles.h
|
||||
+++ ario-1.5.1/src/ario-profiles.h
|
||||
@@ -20,7 +20,7 @@
|
||||
#ifndef __ARIO_PROFILES_H
|
||||
#define __ARIO_PROFILES_H
|
||||
|
||||
-#include <glib/gslist.h>
|
||||
+#include <glib.h>
|
||||
#include "servers/ario-server.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
Index: ario-1.5.1/src/ario-util.h
|
||||
===================================================================
|
||||
--- ario-1.5.1.orig/src/ario-util.h
|
||||
+++ ario-1.5.1/src/ario-util.h
|
||||
@@ -18,7 +18,7 @@
|
||||
*/
|
||||
|
||||
#include "servers/ario-server.h"
|
||||
-#include "glib/gslist.h"
|
||||
+#include <glib.h>
|
||||
#include "gdk/gdkpixbuf.h"
|
||||
|
||||
/* Number of covers used to generate the drag & drop image */
|
||||
Index: ario-1.5.1/src/plugins/ario-plugin-info.c
|
||||
===================================================================
|
||||
--- ario-1.5.1.orig/src/plugins/ario-plugin-info.c
|
||||
+++ ario-1.5.1/src/plugins/ario-plugin-info.c
|
||||
@@ -27,7 +27,7 @@
|
||||
|
||||
#include <string.h>
|
||||
#include <glib/gi18n.h>
|
||||
-#include <glib/gkeyfile.h>
|
||||
+#include <glib.h>
|
||||
|
||||
#include "plugins/ario-plugin-info-priv.h"
|
||||
#include "ario-debug.h"
|
Loading…
Reference in a new issue