54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
34 lines
781 B
Makefile
34 lines
781 B
Makefile
# New ports collection makefile for: spandsp
|
|
# Date created: 23 June 2005
|
|
# Whom: wlloyd@slap.net
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= spandsp
|
|
DISTVERSION= 0.0.2pre18
|
|
CATEGORIES= comms
|
|
MASTER_SITES= http://www.soft-switch.org/downloads/spandsp/${PORTNAME}-${DISTVERSION}/ \
|
|
${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= pav
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Fax DSP library for Asterisk
|
|
|
|
LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION:C/pre.*$//}
|
|
|
|
USE_GMAKE= yes
|
|
USE_REINPLACE= yes
|
|
|
|
USE_AUTOTOOLS= libtool:15
|
|
CONFIGURE_ARGS= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
INSTALLS_SHLIB= yes
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -name *.c | ${XARGS} ${REINPLACE_CMD} -e 's|<stdint.h>|<inttypes.h>|'
|
|
|
|
.include <bsd.port.mk>
|