mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
b2fd75e438
* kill devel/libtool and move to devel/libtool13, upgrading to 1.3.5 * upgrade repo-copied devel/libtool14 to 1.4.3 * break out libltdl into its own separate port * move to version-numbered binaries/scripts (ie: there is *no* 'libtool' any more -- USE_LIBTOOL and USE_LIBTOOL_VER are your friends) Approved by: portmgr (kris) - for the bsd.port.mk hooks Tested by: bento 4-exp builds (repeatedly)
42 lines
903 B
Makefile
42 lines
903 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: libdsp
|
|
# Date created: Jan 16, 2001
|
|
# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libdsp
|
|
PORTVERSION= 4.6.0
|
|
CATEGORIES= devel audio
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= ${PORTNAME}-src-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= C++ class library of common digital signal processing functions
|
|
|
|
WRKSRC= ${WRKDIR}/libdsp-src/${PORTNAME:S/dsp/DSP/}-${PORTVERSION}
|
|
|
|
USE_LIBTOOL= yes
|
|
LIBTOOLFILES= # none
|
|
USE_GMAKE= yes
|
|
MAKE_ENV= CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" MKDIR="${MKDIR}" \
|
|
INLINE_VER="${INLINE_VER}"
|
|
MAKEFILE= Makefile.FreeBSD
|
|
INSTALLS_SHLIB= yes
|
|
|
|
INLINE_VER= 1.2.5
|
|
|
|
# There's no configure script, but we need libtool to build
|
|
do-configure:
|
|
@${DO_NADA}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "i386"
|
|
CFLAGS+= -DDSP_X86
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|