[125759] trunk/dports/audio

ryandesign at macports.org ryandesign at macports.org
Thu Sep 25 14:02:46 PDT 2014


Revision: 125759
          https://trac.macports.org/changeset/125759
Author:   ryandesign at macports.org
Date:     2014-09-25 14:02:46 -0700 (Thu, 25 Sep 2014)
Log Message:
-----------
pd-faust: new port, version 0.9 (#45141)

Added Paths:
-----------
    trunk/dports/audio/pd-faust/
    trunk/dports/audio/pd-faust/Portfile
    trunk/dports/audio/pd-faust/files/
    trunk/dports/audio/pd-faust/files/patch-lib-Makefile.diff

Added: trunk/dports/audio/pd-faust/Portfile
===================================================================
--- trunk/dports/audio/pd-faust/Portfile	                        (rev 0)
+++ trunk/dports/audio/pd-faust/Portfile	2014-09-25 21:02:46 UTC (rev 125759)
@@ -0,0 +1,37 @@
+# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
+# $Id$
+
+PortSystem                      1.0
+PortGroup                       pure 1.0
+
+pure.setup                      pd-faust 0.9
+name                            pd-faust
+categories                      audio devel
+platforms                       darwin
+maintainers                     ryandesign
+license                         LGPL-3+ MIT
+
+description                     a Pd plugin loader which lets you run Faust \
+                                programs as externals in Pd and dynamically \
+                                generate Pd GUI subpatches
+
+long_description                ${name} provides ${description}.
+
+checksums                       rmd160  8b1f39c5ebfb7410d3e836d77c4eee4851328794 \
+                                sha256  d15e77dd13b07407fad86df0e81cf1e450dcfe27f144f248fc88140f71eba8bb
+
+depends_build-append            path:bin/faust:faust \
+                                port:pkgconfig
+
+depends_lib-append              port:pure-faust \
+                                port:pure-midi \
+                                port:pure-stldict
+
+depends_run-append              port:pd-pure
+
+patchfiles-append               patch-lib-Makefile.diff
+
+build.args-append               LIBRARY_PATH=${prefix}/lib \
+                                prefix=${prefix}
+
+destroot.args-append            prefix=${prefix}


Property changes on: trunk/dports/audio/pd-faust/Portfile
___________________________________________________________________
Added: svn:keywords
   + Id
Added: svn:eol-style
   + native

Added: trunk/dports/audio/pd-faust/files/patch-lib-Makefile.diff
===================================================================
--- trunk/dports/audio/pd-faust/files/patch-lib-Makefile.diff	                        (rev 0)
+++ trunk/dports/audio/pd-faust/files/patch-lib-Makefile.diff	2014-09-25 21:02:46 UTC (rev 125759)
@@ -0,0 +1,34 @@
+--- lib/Makefile.orig	2014-09-20 12:49:21.000000000 -0500
++++ lib/Makefile	2014-09-25 15:51:37.000000000 -0500
+@@ -37,12 +37,12 @@
+ 
+ pdfaust$(PDDLL): pdfaust.o pdloader.o util.o
+ 	rm -f pdfaust$(PDDLL)
+-	gcc $(PIC) $(shared) $^ $(extralibs) -o pdfaust$(DLL) $(PURE_LIBS)
++	$(CC) $(PIC) $(shared) $^ $(extralibs) -o pdfaust$(DLL) $(PURE_LIBS)
+ 	test "$(DLL)" = "$(PDDLL)" || mv pdfaust$(DLL) pdfaust$(PDDLL)
+ 
+ pdfaust2$(PDDLL): pdfaust2.o pdloader2.o util.o
+ 	rm -f pdfaust2$(PDDLL)
+-	gcc $(PIC) $(shared) $^ $(extralibs) -o pdfaust2$(DLL) $(PURE_LIBS)
++	$(CC) $(PIC) $(shared) $^ $(extralibs) -o pdfaust2$(DLL) $(PURE_LIBS)
+ 	test "$(DLL)" = "$(PDDLL)" || mv pdfaust2$(DLL) pdfaust2$(PDDLL)
+ 
+ pdfaustsrc = $(addprefix ../, fdsp~.pure fsynth~.pure midiseq.pure oscseq.pure)
+@@ -55,13 +55,13 @@
+ 	pure $(PIC) $(PUREC_FLAGS) -I.. -L.. -c $(pdfaustsrc) -o $@ --main __pdfaust_main__ --enable faust2
+ 
+ pdloader.o: pdloader.c
+-	gcc $(ALL_CFLAGS) -DVERSION="\"$(version)\"" -c $< -o $@
++	$(CC) $(ALL_CFLAGS) -DVERSION="\"$(version)\"" -c $< -o $@
+ 
+ pdloader2.o: pdloader.c
+-	gcc $(ALL_CFLAGS) -DVERSION="\"$(version)\"" -DFAUST2 -c $< -o $@
++	$(CC) $(ALL_CFLAGS) -DVERSION="\"$(version)\"" -DFAUST2 -c $< -o $@
+ 
+ util.o: util.c
+-	gcc $(ALL_CFLAGS) -c $< -o $@
++	$(CC) $(ALL_CFLAGS) -c $< -o $@
+ 
+ # Faust-specific stuff
+ svg: $(svg)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20140925/12e9688f/attachment-0001.html>


More information about the macports-changes mailing list