a31ac75b65
- integrated GSM support - new soxmix program * Bump libvorbis version number in LIB_DEPENDS. * Use new Ogg Vorbis RC3 encoder API. * Replace incomplete list of supported formats and effects with a general blurb in DESCR. * Update home page URL in DESCR. Reviewed by: Dan Nelson <dnelson@emsphone.com>
29 lines
625 B
Makefile
29 lines
625 B
Makefile
# New ports collection makefile for: sox - Sound Exchange
|
|
# Date created: 17 Oct 1994
|
|
# Whom: torstenb
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sox
|
|
PORTVERSION= 12.17.3
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= sox
|
|
|
|
MAINTAINER= dnelson@emsphone.com
|
|
|
|
MAN1= sox.1 play.1 soxexam.1
|
|
MLINKS= play.1 rec.1 sox.1 soxmix.1
|
|
GNU_CONFIGURE= yes
|
|
|
|
.if defined(WITH_VORBIS)
|
|
CONFIGURE_ARGS+= --with-ogg-vorbisinc=${LOCALBASE}/include \
|
|
--with-ogg-vorbislib=${LOCALBASE}/lib
|
|
LIB_DEPENDS+= vorbis.1:${PORTSDIR}/audio/libvorbis
|
|
.else
|
|
CONFIGURE_ARGS+= --with-ogg-vorbisinc=no
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|