diff options
author | jlam <jlam> | 2001-07-01 21:47:12 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-07-01 21:47:12 +0000 |
commit | 1d058d7b63a64a1c97dfa0483f30255cd029d18e (patch) | |
tree | 7c7a15647c7de769b8e6e2ef50dd9aced851bd26 /audio/sox | |
parent | 7d717fc2d3249f04ef8873e6da1924f0a129614a (diff) | |
download | pkgsrc-1d058d7b63a64a1c97dfa0483f30255cd029d18e.tar.gz |
Mark as USE_BUILDLINK_ONLY to prevent accidentally depending on installed
gsm library.
Diffstat (limited to 'audio/sox')
-rw-r--r-- | audio/sox/Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/audio/sox/Makefile b/audio/sox/Makefile index c6aacb7982f..a566d2fccf2 100644 --- a/audio/sox/Makefile +++ b/audio/sox/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2001/02/16 13:30:50 wiz Exp $ +# $NetBSD: Makefile,v 1.16 2001/07/01 21:47:12 jlam Exp $ # FreeBSD Id: Makefile,v 1.9 1997/02/04 10:32:34 max Exp # @@ -10,17 +10,17 @@ MAINTAINER= packages@netbsd.org HOMEPAGE= http://home.sprynet.com/~cbagwell/sox.html COMMENT= SOund eXchange - universal sound sample translator -GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--enable-fast-ulaw \ - --enable-fast-alaw \ - --with-sun-audio \ - --without-oss-dsp +USE_BUILDLINK_ONLY= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --enable-fast-ulaw \ + --enable-fast-alaw \ + --with-sun-audio \ + --without-oss-dsp pre-build: - cd ${WRKSRC} ; \ - [ -f play.BAK ] || ${MV} play play.BAK ; \ - ${SED} \ - -e 's|@PREFIX@|${PREFIX}|g' \ - < play.BAK >play + cd ${WRKSRC}; \ + [ -f play.BAK ] || ${MV} play play.BAK; \ + ${SED} -e "s|@PREFIX@|${PREFIX}|g" \ + play.BAK > play .include "../../mk/bsd.pkg.mk" |