blob: 77ffc71d309f070b129b9dc95a7cb94b19622a90 (
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
|
# $NetBSD: Makefile,v 1.31 2011/01/12 10:33:13 wiz Exp $
#
# included by ../../audio/bmp/buildlink3.mk
# included by ../../audio/bmp-esound/buildlink3.mk
BMP_ENABLE_ENCODERS= yes
PKG_DESTDIR_SUPPORT= user-destdir
.include "Makefile.common"
PKGREVISION= 9
DEPENDS+= unzip-[0-9]*:../../archivers/unzip
PLIST_VARS+= cdaudio
.if ${OPSYS} != "Darwin"
PLIST.cdaudio= yes
.endif
PRINT_PLIST_AWK+= /cdaudio/ { print "$${PLIST.cdaudio}" $$0; next }
# XXX Workaround a crash during shutdown that happens when dlclose(3)ing
# any open plugin. libstdc++ gets dynamically linked in when the id3lib
# library is loaded, and is the one causing problems. See PR pkg/26846
# for more information.
USE_LANGUAGES= c c++
LDFLAGS.NetBSD+= -lstdc++ -lm
.include "../../audio/id3lib/buildlink3.mk"
.include "../../audio/libvorbis/buildlink3.mk"
.include "../../multimedia/libogg/buildlink3.mk"
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
.include "../../mk/bsd.pkg.mk"
|