9c8b5ede43
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
54 lines
1.3 KiB
Makefile
54 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.7 2006/03/04 21:29:00 jlam Exp $
|
|
|
|
DISTNAME= faad2-2.0
|
|
PKGNAME= xmms-faad-2.0
|
|
PKGREVISION= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=faac/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.audiocoding.com/
|
|
COMMENT= XMMS plugin for faad
|
|
|
|
#RESTRICTED= Dolby doesn't allow binary distributions
|
|
#NO_BIN_ON_FTP= ${RESTRICTED}
|
|
#NO_BIN_ON_CDROM= ${RESTRICTED}
|
|
|
|
WRKSRC= ${WRKDIR}/faad2
|
|
USE_TOOLS+= automake14 gmake pkg-config
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= YES
|
|
SHLIBTOOL_OVERRIDE= libtool
|
|
|
|
AUTOCONF_REQD= 2.50
|
|
GNU_CONFIGURE= YES
|
|
|
|
CONFIGURE_ARGS+= --with-xmms
|
|
CONFIGURE_ARGS+= --with-mp4v2
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
pre-configure:
|
|
@${CP} ${WRKSRC}/common/faad/getopt.* ${WRKSRC}/frontend
|
|
for dir in . ; do \
|
|
cd ${WRKSRC}/$$dir; \
|
|
aclocal -I .; \
|
|
autoheader; \
|
|
${LOCALBASE}/bin/libtoolize --automake; \
|
|
automake --add-missing; \
|
|
autoconf; \
|
|
done
|
|
|
|
do-build:
|
|
@cd ${WRKSRC}/plugins/xmms/src && \
|
|
${MAKE_ENV} ${MAKE_PROGRAM} ${MAKE_FLAGS} ${BUILD_TARGET}
|
|
|
|
do-install:
|
|
@cd ${WRKSRC}/plugins/xmms && \
|
|
${MAKE_ENV} ${MAKE_PROGRAM} ${MAKE_FLAGS} ${INSTALL_TARGET}
|
|
|
|
.include "../../audio/faad2/buildlink3.mk"
|
|
.include "../../audio/id3lib/buildlink3.mk"
|
|
.include "../../audio/xmms/buildlink3.mk"
|
|
.include "../../x11/gtk/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|