Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Jan 2001 14:52:47 +0800 (CST)
From:      Ying-Chieh Liao <ijliao@terry.dragon2.net>
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/24373: new port : devel/libdsp
Message-ID:  <200101160652.f0G6qlU83279@Terry.Dorm8.NCTU.edu.tw>

next in thread | raw e-mail | index | archive | help

>Number:         24373
>Category:       ports
>Synopsis:       new port : devel/libdsp
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Jan 15 23:00:01 PST 2001
>Closed-Date:
>Last-Modified:
>Originator:     Ying-Chieh Liao
>Release:        FreeBSD 5.0-CURRENT i386
>Organization:
NCTU CSIE
>Environment:
System: FreeBSD Terry.Dorm8.NCTU.edu.tw 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Thu Jan 11 07:55:18 CST 2001 root@Terry.Dorm8.NCTU.edu.tw:/usr/obj/usr/src/sys/TERRY i386


	
>Description:

new port : libdsp 3.3.4
C++ class library of common digital signal processing functions

>How-To-Repeat:
	
>Fix:

# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	libdsp
#	libdsp/Makefile
#	libdsp/distinfo
#	libdsp/pkg-comment
#	libdsp/pkg-descr
#	libdsp/pkg-plist
#	libdsp/files
#	libdsp/files/patch-Makefile_FreeBSD
#
echo c - libdsp
mkdir -p libdsp > /dev/null 2>&1
echo x - libdsp/Makefile
sed 's/^X//' >libdsp/Makefile << 'END-of-libdsp/Makefile'
X# ex:ts=8
X# New ports collection makefile for:	libdsp
X# Date created:		Jan 16, 2001
X# Whom:			Ying-Chieh Liao <ijliao@csie.nctu.edu.tw>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	libdsp
XPORTVERSION=	3.3.4
XCATEGORIES=	devel audio
XMASTER_SITES=	http://www.pp.clinet.fi/~visitor/dlbins/
XDISTNAME=	libdsp-src
X
XMAINTAINER=	ijliao@csie.nctu.edu.tw
X
X# dont use "USE_LIBTOOL=yes" because there's no configure script
XBUILD_DEPENDS=	libtool:${PORTSDIR}/devel/libtool
X
XINSTALL_SHLIBS=	yes
X
XWRKSRC=		${WRKDIR}/${PORTNAME:S/dsp/DSP/}-${PORTVERSION}
XMAKEFILE=	Makefile.FreeBSD
X
XUSE_GMAKE=	yes
X
Xpost-patch:
X	@${PERL} -pi -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/${MAKEFILE}
X
X.include <bsd.port.mk>
END-of-libdsp/Makefile
echo x - libdsp/distinfo
sed 's/^X//' >libdsp/distinfo << 'END-of-libdsp/distinfo'
XMD5 (libdsp-src.tar.gz) = e844f463d7c15ff98746c3c316038a86
END-of-libdsp/distinfo
echo x - libdsp/pkg-comment
sed 's/^X//' >libdsp/pkg-comment << 'END-of-libdsp/pkg-comment'
XC++ class library of common digital signal processing functions
END-of-libdsp/pkg-comment
echo x - libdsp/pkg-descr
sed 's/^X//' >libdsp/pkg-descr << 'END-of-libdsp/pkg-descr'
XlibDSP is C++ class library of common digital signal processing functions. 
X
XWWW: http://www.pp.clinet.fi/~visitor/
X
X-- Ying-Chieh Liao
X   ijliao@csie.nctu.edu.tw
END-of-libdsp/pkg-descr
echo x - libdsp/pkg-plist
sed 's/^X//' >libdsp/pkg-plist << 'END-of-libdsp/pkg-plist'
Xinclude/dsp/DSPConfig.hh
Xinclude/dsp/DSPOp.hh
Xinclude/dsp/Decimator.hh
Xinclude/dsp/Filter.hh
Xinclude/dsp/Transform4.hh
Xinclude/dsp/Transform8.hh
Xinclude/dsp/TransformS.hh
X@dirrm include/dsp
Xlib/libdsp.a
Xlib/libdsp.la
Xlib/libdsp.so
Xlib/libdsp.so.0
END-of-libdsp/pkg-plist
echo c - libdsp/files
mkdir -p libdsp/files > /dev/null 2>&1
echo x - libdsp/files/patch-Makefile_FreeBSD
sed 's/^X//' >libdsp/files/patch-Makefile_FreeBSD << 'END-of-libdsp/files/patch-Makefile_FreeBSD'
X--- Makefile.FreeBSD.orig	Tue Jan 16 13:35:30 2001
X+++ Makefile.FreeBSD	Tue Jan 16 13:38:31 2001
X@@ -18,12 +18,12 @@
X #
X 
X CXX = g++
X-CXXFLAGS = -mcpu=k6 -march=k6 -O6 -fomit-frame-pointer -ffast-math -funroll-loops -malign-loops=3 -malign-jumps=3 -malign-functions=3 -mpreferred-stack-boundary=3 -mfancy-math-387 -Wall
X+CXXFLAGS = -O6 -fomit-frame-pointer -ffast-math -funroll-loops -malign-loops=3 -malign-jumps=3 -malign-functions=3 -mpreferred-stack-boundary=3 -mfancy-math-387 -Wall
X DEFS = -D_REENTRANT -D_THREAD_SAFE -DFREEBSD
X-INCS = -I.
X+INCS = -I. -I../Inlines-1.0.0.3
X LIBS = -lm #-ldrfftw -ldfftw
X LIBTOOL = libtool
X-PREFIX = /usr/local
X+PREFIX = %%PREFIX%%
X 
X VERSION = 0:4:0
X 
END-of-libdsp/files/patch-Makefile_FreeBSD
exit


>Release-Note:
>Audit-Trail:
>Unformatted:


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200101160652.f0G6qlU83279>