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

(-)lmms-new/Makefile (-6 / +2 lines)
Lines 7-18 Link Here
7
7
8
PORTNAME=	lmms
8
PORTNAME=	lmms
9
PORTVERSION=	0.4.6
9
PORTVERSION=	0.4.6
10
PORTREVISION=	2
10
PORTREVISION=	3
11
PORTEPOCH=	1
11
PORTEPOCH=	1
12
CATEGORIES=	audio
12
CATEGORIES=	audio
13
MASTER_SITES=	SF
13
MASTER_SITES=	SF
14
14
15
MAINTAINER=	ports@FreeBSD.org
15
MAINTAINER=	rodrigo@bebik.net
16
COMMENT=	An all-in-one sequencer, drum machine, sampler and more
16
COMMENT=	An all-in-one sequencer, drum machine, sampler and more
17
17
18
BUILD_DEPENDS=	${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa
18
BUILD_DEPENDS=	${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa
Lines 54-63 Link Here
54
54
55
.include <bsd.port.pre.mk>
55
.include <bsd.port.pre.mk>
56
56
57
.if ${OSVERSION} >= 800501
58
BROKEN=		does not build
59
.endif
60
61
.if defined(WITH_JACK)
57
.if defined(WITH_JACK)
62
LIB_DEPENDS+=	jack.0:${PORTSDIR}/audio/jack
58
LIB_DEPENDS+=	jack.0:${PORTSDIR}/audio/jack
63
.else
59
.else
(-)lmms-new/files/patch-plugins__zynaddsubfx__fltk__src__filename_list.cxx (-1 / +1 lines)
Lines 16-22 Link Here
16
 #ifndef HAVE_SCANDIR
16
 #ifndef HAVE_SCANDIR
17
   int n = scandir(d, list, 0, sort);
17
   int n = scandir(d, list, 0, sort);
18
-#elif defined(__hpux) || defined(__CYGWIN__) || (__GLIBC__ >= 2 && __GLIBC_MINOR__ >= 10 )
18
-#elif defined(__hpux) || defined(__CYGWIN__) || (__GLIBC__ >= 2 && __GLIBC_MINOR__ >= 10 )
19
+#elif defined(__hpux) || defined(__CYGWIN__) || (__GLIBC__ >= 2 && __GLIBC_MINOR__ >= 10 ) || (defined(__FreeBSD__) && __FreeBSD_version >= 900006)
19
+#elif defined(__hpux) || defined(__CYGWIN__) || (__GLIBC__ >= 2 && __GLIBC_MINOR__ >= 10 ) || (defined(__FreeBSD__) && ( (__FreeBSD_version < 900000 && __FreeBSD_version >= 800501) || (__FreeBSD_version >= 900006)))
20
   // HP-UX, Cygwin and POSIX (2008) define the comparison function like this:
20
   // HP-UX, Cygwin and POSIX (2008) define the comparison function like this:
21
   int n = scandir(d, list, 0, (int(*)(const dirent **, const dirent **))sort);
21
   int n = scandir(d, list, 0, (int(*)(const dirent **, const dirent **))sort);
22
 #elif defined(__osf__)
22
 #elif defined(__osf__)

Return to bug 150205