0183f102be
This fixes problems when some installed packages are outdated. Per wiz@'s request. (These are some that I forgot in the previous commit because they weren't initially in the file list. Reported by hira@.)
31 lines
864 B
Makefile
31 lines
864 B
Makefile
# $NetBSD: Makefile,v 1.20 2006/09/16 15:36:12 jmmv Exp $
|
|
#
|
|
|
|
BMP_ENABLE_ENCODERS= yes
|
|
|
|
.include "Makefile.common"
|
|
|
|
PKGREVISION= 1
|
|
|
|
DEPENDS+= unzip-[0-9]*:../../archivers/unzip
|
|
|
|
.if ${OPSYS} == "Darwin"
|
|
PLIST_SUBST+= CDAUDIO="@comment "
|
|
.else
|
|
PLIST_SUBST+= CDAUDIO=""
|
|
.endif
|
|
PRINT_PLIST_AWK+= /cdaudio/ { print "$${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"
|