From owner-freebsd-ports Tue Aug 20 10:20:14 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D33C37B400 for ; Tue, 20 Aug 2002 10:20:03 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4013E43E6A for ; Tue, 20 Aug 2002 10:20:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g7KHK2JU076921 for ; Tue, 20 Aug 2002 10:20:02 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g7KHK2fe076920; Tue, 20 Aug 2002 10:20:02 -0700 (PDT) Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8286D37B400 for ; Tue, 20 Aug 2002 10:15:16 -0700 (PDT) Received: from tl.kom.tuwien.ac.at (tl.kom.tuwien.ac.at [128.131.34.148]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7A8A43E65 for ; Tue, 20 Aug 2002 10:15:15 -0700 (PDT) (envelope-from tilman@arved.de) Received: from tl.kom.tuwien.ac.at (localhost [127.0.0.1]) by tl.kom.tuwien.ac.at (8.12.5/8.12.5) with ESMTP id g7KHErVh038879; Tue, 20 Aug 2002 19:14:53 +0200 (CEST) (envelope-from tilman@tl.kom.tuwien.ac.at) Received: (from tilman@localhost) by tl.kom.tuwien.ac.at (8.12.5/8.12.5/Submit) id g7KHErtI038878; Tue, 20 Aug 2002 19:14:53 +0200 (CEST) Message-Id: <200208201714.g7KHErtI038878@tl.kom.tuwien.ac.at> Date: Tue, 20 Aug 2002 19:14:53 +0200 (CEST) From: Tilman Linneweh Reply-To: Tilman Linneweh To: FreeBSD-gnats-submit@FreeBSD.org Cc: tilman@Arved.de X-Send-Pr-Version: 3.113 Subject: ports/41821: [Maintainer-Update] audio/ladspa 0 -> 1.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 41821 >Category: ports >Synopsis: [Maintainer-Update] audio/ladspa 0 -> 1.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Aug 20 10:20:01 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Tilman Linneweh >Release: FreeBSD 4.6-STABLE i386 >Organization: Vienna University of Technology >Environment: System: FreeBSD tl.kom.tuwien.ac.at 4.6-STABLE FreeBSD 4.6-STABLE #0: Wed Jul 24 15:50:09 CEST 2002 root@tl.kom.tuwien.ac.at:/usr/obj/usr/src/sys/MYKERNEL i386 >Description: This is version 1.1 of the LADSPA - API. The API now has a version number, but the distfile still hasn't one :-(, so i rerolled the original tarball from ladspa.org and host it on my site. Most of the stuff from patch-makefile was merged into this ladspa Version, so we can delete it. >How-To-Repeat: >Fix: --- ladspa.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/audio/ladspa/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- Makefile 30 May 2002 16:47:21 -0000 1.1 +++ Makefile 20 Aug 2002 17:02:53 -0000 @@ -5,31 +5,34 @@ # $FreeBSD: ports/audio/ladspa/Makefile,v 1.1 2002/05/30 16:47:21 ijliao Exp $ PORTNAME= ladspa -PORTVERSION= 0 +PORTVERSION= 1.1 CATEGORIES= audio -MASTER_SITES= http://www.ladspa.org/download/ -DISTNAME= ladspa_sdk -EXTRACT_SUFX= .tgz +MASTER_SITES= http://www.arved.de/bsd/src/ MAINTAINER= freebsdports@arved.de +USE_BZIP2= yes USE_GMAKE= yes -WRKSRC= ${WRKDIR}/${DISTNAME}/src -MAKEFILE= makefile -ALL_TARGET= targets - +USE_REINPLACE= yes +INSTALLS_SHLIB= yes PROGRAM_FILES= analyseplugin applyplugin listplugins PLUGIN_FILES= amp.so delay.so filter.so noise.so sine.so -PLUGIN_DIR= ${PREFIX}/lib/ladspa/ +PLUGIN_DIR?= ${PREFIX}/lib/ladspa/ + +post-patch: + ${REINPLACE_CMD} -e 's,-ldl,,' ${WRKSRC}/src/makefile + +do-build: + cd ${WRKSRC}/src; ${GMAKE} -f makefile targets do-install: - @${INSTALL_DATA} ${WRKSRC}/ladspa.h ${PREFIX}/include + @${INSTALL_DATA} ${WRKSRC}/src/ladspa.h ${PREFIX}/include .for file in ${PROGRAM_FILES} - @${INSTALL_PROGRAM} ${WRKSRC}/../bin/${file} ${PREFIX}/bin + @${INSTALL_PROGRAM} ${WRKSRC}/bin/${file} ${PREFIX}/bin .endfor @${MKDIR} ${PLUGIN_DIR} .for file in ${PLUGIN_FILES} - @${INSTALL_DATA} ${WRKSRC}/../plugins/${file} ${PLUGIN_DIR} + @${INSTALL_DATA} ${WRKSRC}/plugins/${file} ${PLUGIN_DIR} .endfor .include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/audio/ladspa/distinfo,v retrieving revision 1.1 diff -u -r1.1 distinfo --- distinfo 30 May 2002 16:47:21 -0000 1.1 +++ distinfo 20 Aug 2002 15:16:07 -0000 @@ -1 +1 @@ -MD5 (ladspa_sdk.tgz) = 00b34b8f9a80a1fe141b643e64ac1681 +MD5 (ladspa-1.1.tar.bz2) = 80dc90052e6a2f11ad9bf24ee98d4496 Index: files/patch-applyplugin.c =================================================================== RCS file: /home/ncvs/ports/audio/ladspa/files/patch-applyplugin.c,v retrieving revision 1.1 diff -u -r1.1 patch-applyplugin.c --- files/patch-applyplugin.c 30 May 2002 16:47:22 -0000 1.1 +++ files/patch-applyplugin.c 20 Aug 2002 15:17:50 -0000 @@ -1,5 +1,5 @@ ---- applyplugin.c.orig Sat May 11 23:31:00 2002 -+++ applyplugin.c Sat May 11 23:31:09 2002 +--- src/applyplugin.c.orig Sat May 11 23:31:00 2002 ++++ src/applyplugin.c Sat May 11 23:31:09 2002 @@ -6,7 +6,7 @@ /*****************************************************************************/ --- ladspa.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message