View | Details | Raw Unified | Return to bug 167889
Collapse All | Expand All

(-)audio/pianobar/Makefile (-5 / +7 lines)
Lines 6-24 Link Here
6
#
6
#
7
7
8
PORTNAME=	pianobar
8
PORTNAME=	pianobar
9
PORTVERSION=	2012.01.10
9
PORTVERSION=	2012.05.06
10
CATEGORIES=	audio
10
CATEGORIES=	audio
11
MASTER_SITES=	http://6xq.net/static/projects/${PORTNAME}/
11
MASTER_SITES=	http://6xq.net/projects/${PORTNAME}/
12
12
13
MAINTAINER=	john@pcbsd.org
13
MAINTAINER=	john@pcbsd.org
14
COMMENT=	Command line Pandora player
14
COMMENT=	Command line Pandora player
15
15
16
LICENSE=	MIT
17
18
LIB_DEPENDS=	ao:${PORTSDIR}/audio/libao \
16
LIB_DEPENDS=	ao:${PORTSDIR}/audio/libao \
19
		faad:${PORTSDIR}/audio/faad \
17
		faad:${PORTSDIR}/audio/faad \
20
		mad:${PORTSDIR}/audio/libmad \
18
		mad:${PORTSDIR}/audio/libmad \
21
		gnutls.47:${PORTSDIR}/security/gnutls
19
		gnutls.47:${PORTSDIR}/security/gnutls \
20
		json.0:${PORTSDIR}/devel/json-c \
21
		gcrypt:${PORTSDIR}/security/libgcrypt
22
23
LICENSE=	MIT
22
24
23
MAN1=		pianobar.1
25
MAN1=		pianobar.1
24
MAN_COMPRESSED=	no
26
MAN_COMPRESSED=	no
(-)audio/pianobar/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (pianobar-2012.01.10.tar.bz2) = 6d19e5abde542bcdf8b9cfa50448fbe95c1e113f59e54065c9f4e0fbf78690f9
1
SHA256 (pianobar-2012.05.06.tar.bz2) = b143882ca50303d560f49567d1a508ca4b48208db4eb8aa67f369fcaae708d7a
2
SIZE (pianobar-2012.01.10.tar.bz2) = 68839
2
SIZE (pianobar-2012.05.06.tar.bz2) = 47052
(-)audio/pianobar/files/patch-crypt.c (+10 lines)
Line 0 Link Here
1
--- src/libpiano/crypt.c.orig	2012-05-06 07:33:54.000000000 -0700
2
+++ src/libpiano/crypt.c	2012-05-12 19:42:13.000000000 -0700
3
@@ -23,6 +23,7 @@
4
 
5
 #include <string.h>
6
 #include <assert.h>
7
+#define _GCRYPT_IN_LIBGCRYPT
8
 #include <gcrypt.h>
9
 #include <stdio.h>
10
 #include <stdlib.h>
(-)audio/pianobar/files/patch-crypt.h (+10 lines)
Line 0 Link Here
1
--- src/libpiano/crypt.h.orig	2012-05-06 07:33:54.000000000 -0700
2
+++ src/libpiano/crypt.h	2012-05-12 19:42:29.000000000 -0700
3
@@ -24,6 +24,7 @@
4
 #ifndef _CRYPH_H
5
 #define _CRYPT_H
6
 
7
+#define _GCRYPT_IN_LIBGCRYPT
8
 #include <gcrypt.h>
9
 
10
 char *PianoDecryptString (gcry_cipher_hd_t, const char * const,
(-)audio/pianobar/files/patch-piano.h (+10 lines)
Line 0 Link Here
1
--- src/libpiano/piano.h.orig	2012-05-06 07:33:54.000000000 -0700
2
+++ src/libpiano/piano.h	2012-05-12 19:42:41.000000000 -0700
3
@@ -25,6 +25,7 @@
4
 #define _PIANO_H
5
 
6
 #include <stdbool.h>
7
+#define _GCRYPT_IN_LIBGCRYPT
8
 #include <gcrypt.h>
9
 
10
 /* this is our public API; don't expect this api to be stable as long as

Return to bug 167889