freebsd-ports/audio/ecasound/Makefile
David W. Chapman Jr. 8c20164234 Make configure script find audio libs
Bump PORTREVISION

PR:		30058
Submitted by:	maintainer
2001-09-15 04:35:42 +00:00

80 lines
2.1 KiB
Makefile

# New ports collection makefile for: ecasound
# Date created: 22 dec 2000
# Whom: The Anarcat <anarcat@anarcat.dyndns.org>
#
# $FreeBSD$
#
PORTNAME= ecasound
PORTVERSION= 2.0.2
PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= http://ecasound.seul.org/download/ \
${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ecasound
MAINTAINER= anarcat@anarcat.dyndns.org
USE_GMAKE= yes
USE_AUTOMAKE= yes
USE_AUTOCONF= yes
USE_LIBTOOL= yes
INSTALLS_SHLIB= yes
CONFIGURE_ARGS+= --enable-sys-readline
MAKE_ENV+= ${CONFIGURE_ENV}
.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)
# very crappy hack to detect audiofile properly
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib" \
CFLAGS="-I${LOCALBASE}/include ${CFLAGS}" \
CXXFLAGS="-I${LOCALBASE}/include ${CXXFLAGS}"
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:
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/ecasound
${MKDIR} ${PREFIX}/share/doc/ecasound/programmers_guide
${MKDIR} ${PREFIX}/share/doc/ecasound/users_guide
${INSTALL_MAN} ${WRKSRC}/Documentation/*.html ${WRKSRC}/Documentation/*.txt \
${PREFIX}/share/doc/ecasound
${INSTALL_MAN} ${WRKSRC}/Documentation/programmers_guide/*.html \
${PREFIX}/share/doc/ecasound/programmers_guide
${INSTALL_MAN} ${WRKSRC}/Documentation/users_guide/*.html \
${PREFIX}/share/doc/ecasound/users_guide
.endif
# 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>