diff options
author | simonb <simonb@pkgsrc.org> | 2001-01-06 06:47:19 +0000 |
---|---|---|
committer | simonb <simonb@pkgsrc.org> | 2001-01-06 06:47:19 +0000 |
commit | 35200e71f462924bb5f520dc250deb0395131de5 (patch) | |
tree | 6477fc2b87fb809b662951f027ffcebef38a7678 /audio/cdd/Makefile | |
parent | a3aba2707addc5e8f3bbafdc84210d67bc6c7409 (diff) | |
download | pkgsrc-35200e71f462924bb5f520dc250deb0395131de5.tar.gz |
Update to cdd-1.0nb3, with the following changes (by me):
+ Add a -w flag to output WAV files instead of raw audio.
+ Add the "TOSHIBA DVD-ROM SD-C2402" DVD drive.
+ Handle a CDDCPPFLAGS mk.conf variable, can be used to set a
C preprocessor CDD_MMC_SPEED define (maximum value of 65535)
for some DVD's that don't get MMC setspeed requests right
(eg, the drive mentioned above).
+ Fold existing pkgsrc patches into distribution tar file.
Diffstat (limited to 'audio/cdd/Makefile')
-rw-r--r-- | audio/cdd/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/audio/cdd/Makefile b/audio/cdd/Makefile index bdae4f6d10b..e8b721343a2 100644 --- a/audio/cdd/Makefile +++ b/audio/cdd/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.6 1999/12/24 00:59:45 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2001/01/06 06:47:19 simonb Exp $ -DISTNAME= cdd-1.0myc2 -WRKSRC= ${WRKDIR}/cdd +DISTNAME= cdd-1.0nb3 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_LOCAL} @@ -9,6 +8,12 @@ MAINTAINER= thorpej@netbsd.org BUILD_DEPENDS+= ${PREFIX}/lib/libscsi.a:../../devel/libscsi +.include "../../mk/bsd.prefs.mk" + +.if defined(CDDCPPFLAGS) +MAKE_ENV+= "CDDCPPFLAGS=${CDDCPPFLAGS}" +.endif + do-install: @${INSTALL_PROGRAM} ${WRKSRC}/cdd ${PREFIX}/bin @${INSTALL_PROGRAM} ${WRKSRC}/stripzeros ${PREFIX}/bin |