blob: 4e3d668ea92e1e82926912bde9e2b85367833c10 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# $NetBSD: Makefile.common,v 1.5 2004/08/31 15:47:56 jmmv Exp $
#
DISTNAME= bmp-0.9.7rc2
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=beepmp/}
MAINTAINER= jmmv@NetBSD.org
HOMEPAGE= http://beepmp.sourceforge.net/
COMMENT= Beep Media Player (fork of XMMS to work with GTK+ 2.x)
DISTINFO_FILE= ${.CURDIR}/../../audio/bmp/distinfo
FILESDIR= ${.CURDIR}/../../audio/xmms/files
PATCHDIR= ${.CURDIR}/../../audio/bmp/patches
GNU_CONFIGURE= yes
USE_BUILDLINK3= yes
USE_DIRS+= xdg-1.1
USE_LIBTOOL= yes
USE_PKGLOCALEDIR= yes
USE_X11= yes
CONFIGURE_ARGS+= --disable-alsa
CONFIGURE_ARGS+= --disable-esd
CONFIGURE_ARGS+= --disable-mp3
CONFIGURE_ARGS+= --disable-opengl
CONFIGURE_ARGS+= --disable-oss
CONFIGURE_ARGS+= --disable-vorbis
PKGCONFIG_OVERRIDE+= beep.pc
PKG_OPTIONS_VAR= PKG_OPTIONS.bmp
PKG_SUPPORTED_OPTIONS= gnome
.include "../../mk/bsd.options.mk"
.include "../../mk/bsd.prefs.mk"
.if !empty(PKG_OPTIONS:Mgnome)
CONFIGURE_ARGS+= --enable-gconf
CONFIGURE_ARGS+= --enable-gnome-vfs
. include "../../devel/GConf2/buildlink3.mk"
. include "../../sysutils/gnome-vfs2/buildlink3.mk"
.endif
.if ${OPSYS} == "NetBSD"
RAWPART!= /sbin/sysctl -n kern.rawpartition | ${TR} 0-9 a-j
CONFIGURE_ARGS+= --with-dev-dsp=${DEVOSSSOUND} \
--with-cdda-device=/dev/rcd0${RAWPART} \
--with-cdda-dir=/cdrom/
post-extract:
${RM} ${WRKSRC}/Output/OSS/soundcard.h
${LN} -s /usr/include/soundcard.h ${WRKSRC}/Output/OSS/soundcard.h
. 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
.endif
.include "../../audio/libmikmod/buildlink3.mk"
.include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../devel/glib2/buildlink3.mk"
.include "../../devel/libglade2/buildlink3.mk"
.include "../../devel/pkgconfig/buildlink3.mk"
.include "../../x11/gtk2/buildlink3.mk"
.include "../../mk/ossaudio.buildlink3.mk"
|