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

(-)Makefile (-5 / +2 lines)
Lines 2-9 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	minidlna
4
PORTNAME=	minidlna
5
PORTVERSION=	1.1.4
5
PORTVERSION=	1.1.5
6
PORTREVISION=	1
7
PORTEPOCH=	1
6
PORTEPOCH=	1
8
CATEGORIES=	net multimedia www
7
CATEGORIES=	net multimedia www
9
MASTER_SITES=	SF
8
MASTER_SITES=	SF
Lines 22-30 Link Here
22
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
23
CONFIGURE_ARGS=	--with-db-path=/var/db/minidlna \
22
CONFIGURE_ARGS=	--with-db-path=/var/db/minidlna \
24
		--with-os-url="http://www.FreeBSD.org"
23
		--with-os-url="http://www.FreeBSD.org"
25
CPPFLAGS+=	-I${LOCALBASE}/include
24
USES=		autoreconf gettext-tools iconv jpeg localbase
26
LIBS+=		-L${LOCALBASE}/lib
27
USES=		autoreconf gettext-tools iconv jpeg
28
25
29
PKGMESSAGE=	${WRKSRC}/pkg-message
26
PKGMESSAGE=	${WRKSRC}/pkg-message
30
SUB_FILES+=	pkg-message
27
SUB_FILES+=	pkg-message
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (minidlna-1.1.4.tar.gz) = 9814c04a2c506a0dd942c4218d30c07dedf90dabffbdef2d308a3f9f23545314
1
SHA256 (minidlna-1.1.5.tar.gz) = 8477ad0416bb2af5cd8da6dde6c07ffe1a413492b7fe40a362bc8587be15ab9b
2
SIZE (minidlna-1.1.4.tar.gz) = 494478
2
SIZE (minidlna-1.1.5.tar.gz) = 488191
(-)files/extra-patch-kqueue (-34 lines)
Lines 192-231 Link Here
192
 	/* Is it cover art for another file? */
192
 	/* Is it cover art for another file? */
193
 	if( is_image(path) )
193
 	if( is_image(path) )
194
 		update_if_album_art(path);
194
 		update_if_album_art(path);
195
@@ -314,25 +359,25 @@
196
 	{
197
 		case ALL_MEDIA:
198
 			if( !is_image(path) &&
199
-			    !is_audio(path) &&
200
-			    !is_video(path) &&
201
-			    !is_playlist(path) )
202
+					!is_audio(path) &&
203
+					!is_video(path) &&
204
+					!is_playlist(path) )
205
 				return -1;
206
 			break;
207
 		case TYPE_AUDIO:
208
 			if( !is_audio(path) &&
209
-			    !is_playlist(path) )
210
+					!is_playlist(path) )
211
 				return -1;
212
 			break;
213
 		case TYPE_AUDIO|TYPE_VIDEO:
214
 			if( !is_audio(path) &&
215
-			    !is_video(path) &&
216
-			    !is_playlist(path) )
217
+					!is_video(path) &&
218
+					!is_playlist(path) )
219
 			break;
220
 		case TYPE_AUDIO|TYPE_IMAGES:
221
 			if( !is_image(path) &&
222
-			    !is_audio(path) &&
223
-			    !is_playlist(path) )
224
+					!is_audio(path) &&
225
+					!is_playlist(path) )
226
 				return -1;
227
 			break;
228
 		case TYPE_VIDEO:
229
@@ -341,14 +386,14 @@
195
@@ -341,14 +386,14 @@
230
 			break;
196
 			break;
231
 		case TYPE_VIDEO|TYPE_IMAGES:
197
 		case TYPE_VIDEO|TYPE_IMAGES:
(-)files/patch-upnpsoap.c (-11 lines)
Lines 1-11 Link Here
1
--- upnpsoap.c~	2014-05-26 15:54:53.125084054 +0200
2
+++ upnpsoap.c	2014-05-26 15:56:21.415094729 +0200
3
@@ -1300,7 +1300,7 @@
4
 	free(str.data);
5
 }
6
 
7
-inline void
8
+static inline void
9
 charcat(struct string_s *str, char c)
10
 {
11
 	if (str->size <= str->off)
(-)pkg-plist (+1 lines)
Lines 8-13 Link Here
8
%%NLS%%share/locale/fr/LC_MESSAGES/minidlna.mo
8
%%NLS%%share/locale/fr/LC_MESSAGES/minidlna.mo
9
%%NLS%%share/locale/it/LC_MESSAGES/minidlna.mo
9
%%NLS%%share/locale/it/LC_MESSAGES/minidlna.mo
10
%%NLS%%share/locale/ja/LC_MESSAGES/minidlna.mo
10
%%NLS%%share/locale/ja/LC_MESSAGES/minidlna.mo
11
%%NLS%%share/locale/ko/LC_MESSAGES/minidlna.mo
11
%%NLS%%share/locale/nb/LC_MESSAGES/minidlna.mo
12
%%NLS%%share/locale/nb/LC_MESSAGES/minidlna.mo
12
%%NLS%%share/locale/nl/LC_MESSAGES/minidlna.mo
13
%%NLS%%share/locale/nl/LC_MESSAGES/minidlna.mo
13
%%NLS%%share/locale/pl/LC_MESSAGES/minidlna.mo
14
%%NLS%%share/locale/pl/LC_MESSAGES/minidlna.mo

Return to bug 205389