224c56290e
Aside from the PR, I also removed the pkg-plist.py file and merged support for the python plist changes in the standard file, using PLIST_SUB. The plist has been resynced with the installed files, since "make package" used to fail. All patch files have been removed, as stated by related PR ports/26492, from maintainer. PR: 26629 (with some changes) Submitted by: maintainer
59 lines
1.2 KiB
Makefile
59 lines
1.2 KiB
Makefile
# New ports collection makefile for: ecasound
|
|
# Date created: 22 dec 2000
|
|
# Whom: The Anarcat <anarcat@tao.ca>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ecasound
|
|
PORTVERSION= 1.9dev5
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://ecasound.seul.org/download/ \
|
|
${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ecawave
|
|
|
|
MAINTAINER= anarcat@tao.ca
|
|
|
|
USE_GMAKE= yes
|
|
USE_AUTOMAKE= yes
|
|
USE_AUTOCONF= yes
|
|
|
|
USE_LIBTOOL= yes
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.if defined(WITH_MPG123)
|
|
RUN_DEPENDS+= mpg123:${PORTSDIR}/audio/mpg123
|
|
.endif
|
|
|
|
.if defined(WITH_LAME)
|
|
RUN_DEPENDS+= lame:${PORTSDIR}/audio/lame
|
|
.endif
|
|
|
|
.if defined(WITH_MIKMOD)
|
|
RUN_DEPENDS+= mikmod:${PORTSDIR}/audio/mikmod
|
|
.endif
|
|
|
|
.if defined(WITH_AUDIOFILE)
|
|
LIB_DEPENDS+= audiofile.0:${PORTSDIR}/audio/libaudiofile
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-audiofile
|
|
.endif
|
|
|
|
.if defined(WITH_PYECASOUND)
|
|
USE_PYTHON= yes
|
|
PLIST_SUB+= WITH_PYECASOUND=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-pyecasound
|
|
PLIST_SUB+= WITH_PYECASOUND="@comment "
|
|
.endif
|
|
|
|
MAN1= ecasound-iam.1 ecasound.1 ecatools.1
|
|
MAN5= ecasoundrc.5
|
|
|
|
#post-install:
|
|
# strip ${PREFIX}/bin/ecaconvert ${PREFIX}/bin/ecafixdc \
|
|
#${PREFIX}/bin/ecanormalize ${PREFIX}/bin/ecaplay ${PREFIX}/bin/ecasignalview \
|
|
#${PREFIX}/bin/ecasound ${PREFIX}/bin/ecasound-config ${PREFIX}/bin/ecasoundc-config
|
|
|
|
.include <bsd.port.mk>
|