Date: Fri, 19 Jan 2007 23:44:16 +0100 (CET) From: trasz <trasz@pin.if.uz.zgora.pl> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/108131: [NEW PORT] audio/ghostess: Graphical DSSI host with JACK MIDI support Message-ID: <20070119224416.372E739DBA@pin.if.uz.zgora.pl> Resent-Message-ID: <200701192250.l0JMoJKn094079@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 108131 >Category: ports >Synopsis: [NEW PORT] audio/ghostess: Graphical DSSI host with JACK MIDI support >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jan 19 22:50:18 GMT 2007 >Closed-Date: >Last-Modified: >Originator: trasz >Release: FreeBSD 6.1-RELEASE-p10 i386 >Organization: >Environment: System: FreeBSD pin.if.uz.zgora.pl 6.1-RELEASE-p10 FreeBSD 6.1-RELEASE-p10 #0: Wed Nov 15 19:16:30 CET 2006 >Description: Ghostess is a a graphical DSSI host, based on jack-dssi-host, but capable of saving and restoring plugin configuration, as well as specifying MIDI channels and layering synths. ghostess includes three MIDI drivers: an ALSA sequencer MIDI driver, a (clumsy but functional) CoreMIDI driver (which allows ghostess to be used on Mac OS X), and a JACK MIDI driver for use with the MIDI transport in recent versions (>=0.102.27) of JACK. ghostess also comes with a universal DSSI GUI, which attempts to provide GUI services for any DSSI or LADSPA plugin, and may be used with any DSSI host. WWW: http://home.jps.net/~musound/ This port depends on ports/108114. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- ghostess-20061127.shar begins here --- # 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: # # ghostess # ghostess/pkg-descr # ghostess/Makefile # ghostess/distinfo # ghostess/files # ghostess/files/patch-configure # ghostess/files/patch-src-ghostess.c # ghostess/files/patch-src-Makefile.in # echo c - ghostess mkdir -p ghostess > /dev/null 2>&1 echo x - ghostess/pkg-descr sed 's/^X//' >ghostess/pkg-descr << 'END-of-ghostess/pkg-descr' XGhostess is a a graphical DSSI host, based on jack-dssi-host, but Xcapable of saving and restoring plugin configuration, as well as Xspecifying MIDI channels and layering synths. ghostess includes Xthree MIDI drivers: an ALSA sequencer MIDI driver, a (clumsy but Xfunctional) CoreMIDI driver (which allows ghostess to be used on XMac OS X), and a JACK MIDI driver for use with the MIDI transport Xin recent versions (>=0.102.27) of JACK. ghostess also comes with Xa universal DSSI GUI, which attempts to provide GUI services for Xany DSSI or LADSPA plugin, and may be used with any DSSI host. X XWWW: http://home.jps.net/~musound/ END-of-ghostess/pkg-descr echo x - ghostess/Makefile sed 's/^X//' >ghostess/Makefile << 'END-of-ghostess/Makefile' X# New ports collection makefile for: ghostess X# Date created: 2007-01-13 X# Whom: trasz <trasz@pin.if.uz.zgora.pl> X# X# $FreeBSD$ X# X XPORTNAME= ghostess XPORTVERSION= 20061127 XCATEGORIES= audio XMASTER_SITES= http://home.jps.net/~musound/ X XMAINTAINER= trasz@pin.if.uz.zgora.pl XCOMMENT= Graphical DSSI host with JACK MIDI support X XLIB_DEPENDS= dssialsacompat.0:${PORTSDIR}/audio/libdssialsacompat \ X lo.6:${PORTSDIR}/audio/liblo \ X jack.0:${PORTSDIR}/audio/jack XBUILD_DEPENDS= ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa X XGNU_CONFIGURE= yes XCONFIGURE_ARGS= --with-jackmidi XUSE_GMAKE= yes XUSE_GNOME= gtk20 X XPLIST_FILES= bin/ghostess bin/ghostess_universal_gui X X.include <bsd.port.mk> END-of-ghostess/Makefile echo x - ghostess/distinfo sed 's/^X//' >ghostess/distinfo << 'END-of-ghostess/distinfo' XMD5 (ghostess-20061127.tar.gz) = 74c6ee39a0ed1ac9ec0015fe7b45ffe6 XSHA256 (ghostess-20061127.tar.gz) = a557ecfecc85654cb2f86110485e8c5dcea602143d1a0666dd486aeacb2475fb XSIZE (ghostess-20061127.tar.gz) = 375161 END-of-ghostess/distinfo echo c - ghostess/files mkdir -p ghostess/files > /dev/null 2>&1 echo x - ghostess/files/patch-configure sed 's/^X//' >ghostess/files/patch-configure << 'END-of-ghostess/files/patch-configure' X--- configure.orig Tue Nov 28 17:09:13 2006 X+++ configure Sat Jan 13 20:08:31 2007 X@@ -21405,14 +21405,9 @@ X echo "GTK support: $with_gtk" X X case "${host_os}" in X-darwin*) X+darwin* | freebsd*) X darwin=yes X X-cat >>confdefs.h <<\_ACEOF X-#define MIDI_COREMIDI 1 X-_ACEOF X- X- X succeeded=no X X if test -z "$PKG_CONFIG"; then END-of-ghostess/files/patch-configure echo x - ghostess/files/patch-src-ghostess.c sed 's/^X//' >ghostess/files/patch-src-ghostess.c << 'END-of-ghostess/files/patch-src-ghostess.c' X--- src/ghostess.c.orig Sat Jan 13 19:36:01 2007 X+++ src/ghostess.c Sat Jan 13 19:36:18 2007 X@@ -56,6 +56,7 @@ X #include <dirent.h> X #include <pthread.h> X #include <math.h> X+#include <errno.h> X X #include <gtk/gtk.h> X END-of-ghostess/files/patch-src-ghostess.c echo x - ghostess/files/patch-src-Makefile.in sed 's/^X//' >ghostess/files/patch-src-Makefile.in << 'END-of-ghostess/files/patch-src-Makefile.in' X--- src/Makefile.in.orig Fri Jan 19 00:40:57 2007 X+++ src/Makefile.in Fri Jan 19 00:42:05 2007 X@@ -207,9 +207,7 @@ X @DARWIN_TRUE@@MIDI_JACK_TRUE@MIDI_SRCS = midi-jack.c X @DARWIN_FALSE@DARWIN_LD_FLAGS = X @DARWIN_TRUE@@MIDI_JACK_FALSE@DARWIN_LD_FLAGS = -framework CoreFoundation -framework CoreMIDI X-@DARWIN_TRUE@@MIDI_JACK_TRUE@DARWIN_LD_FLAGS = -framework CoreFoundation X @DARWIN_FALSE@DARWIN_LD_ADD = X-@DARWIN_TRUE@DARWIN_LD_ADD = -lmx X ghostess_SOURCES = \ X ghostess.c \ X ghostess.h \ END-of-ghostess/files/patch-src-Makefile.in exit --- ghostess-20061127.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20070119224416.372E739DBA>