blob: 83065de4e2b3c968a35f999c14ce0e946ed45328 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# $NetBSD: Makefile,v 1.8 2000/03/29 03:13:02 enami Exp $
# FreeBSD: ports/audio/xmms/Makefile,v 1.9 2000/02/11 01:46:12 cpiazza Exp
DISTNAME= xmms-1.0.1
CATEGORIES= audio
MASTER_SITES= ftp://ftp.xmms.org/xmms/1.0/ \
ftp://ftp.uk.xmms.org/xmms/1.0/ \
ftp://ftp.us.xmms.org/xmms/1.0/ \
ftp://ftp.ca.us.xmms.org/xmms/1.0/ \
ftp://ftp.md.us.xmms.org/xmms/1.0/ \
ftp://ftp.nl.xmms.org/xmms/1.0/ \
ftp://ftp.de.xmms.org/xmms/1.0/
MAINTAINER= tron@netbsd.org
HOMEPAGE= http://www.xmms.org/
DEPENDS+= Mesa-*:../../graphics/Mesa
DEPENDS+= gtk+>=1.2.7:../../x11/gtk
DEPENDS+= libmikmod>=3.1.7:../libmikmod
DEPENDS+= libxml>=1.8.5:../../textproc/libxml
USE_LIBTOOL= yes
USE_X11= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --without-gnome
CPPFLAGS= -I${LOCALBASE}/include
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" \
XML_CONFIG="${LOCALBASE}/bin/xml-config"
.include "../../mk/bsd.prefs.mk"
.if (${OPSYS} == NetBSD)
CPPFLAGS+= -I${WRKDIR}
.if (${MACHINE_ARCH} == i386)
post-patch:
.if (${OBJECT_FMT} == a.out)
${CP} ${FILESDIR}/decode_i586_.s ${WRKSRC}/Input/mpg123/decode_i586.s
.endif
cd ${WRKSRC}/Input/mpg123 && \
${MV} decode_i586.s decode_i586.s.orig && \
${SED} -e 's@^/@#/@g' <decode_i586.s.orig >decode_i586.s
.endif
pre-configure:
${MKDIR} ${WRKDIR}/sys
${LN} -fs /usr/include/soundcard.h ${WRKDIR}/sys/soundcard.h
.endif
.include "../../mk/bsd.pkg.mk"
|