1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

Update to 20081213.

This commit is contained in:
Edward Tomasz Napierala 2009-02-19 22:14:53 +00:00
parent b73f95f908
commit 36f12de294
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=228688
5 changed files with 28 additions and 31 deletions

View File

@ -6,10 +6,9 @@
#
PORTNAME= ghostess
PORTVERSION= 20061127
PORTREVISION= 3
PORTVERSION= 20081213
CATEGORIES= audio
MASTER_SITES= http://home.jps.net/~musound/
MASTER_SITES= http://www.smbolton.com/linux/
MAINTAINER= trasz@FreeBSD.org
COMMENT= Graphical DSSI host with JACK MIDI support
@ -28,6 +27,7 @@ GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-jackmidi
USE_GMAKE= yes
USE_GNOME= gtk20
USE_BZIP2= yes
PLIST_FILES= bin/ghostess bin/ghostess_universal_gui

View File

@ -1,3 +1,3 @@
MD5 (ghostess-20061127.tar.gz) = 74c6ee39a0ed1ac9ec0015fe7b45ffe6
SHA256 (ghostess-20061127.tar.gz) = a557ecfecc85654cb2f86110485e8c5dcea602143d1a0666dd486aeacb2475fb
SIZE (ghostess-20061127.tar.gz) = 375161
MD5 (ghostess-20081213.tar.bz2) = 1b90048c07e152768a42be136f49f2be
SHA256 (ghostess-20081213.tar.bz2) = a9ab39710e00a1ff691b3d4fd070fa231081a1b449685e899d81ac4105593956
SIZE (ghostess-20081213.tar.bz2) = 264977

View File

@ -1,7 +1,7 @@
--- configure.orig Tue Nov 28 17:09:13 2006
+++ configure Sat Jan 13 20:08:31 2007
@@ -21405,14 +21405,9 @@
echo "GTK support: $with_gtk"
--- configure.orig 2008-12-14 01:50:58.000000000 +0100
+++ configure 2009-01-11 15:27:38.000000000 +0100
@@ -11766,15 +11766,9 @@
case "${host_os}" in
-darwin*)
@ -13,6 +13,7 @@
-_ACEOF
-
-
succeeded=no
if test -z "$PKG_CONFIG"; then
-
if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.

View File

@ -8,21 +8,3 @@
#include <gtk/gtk.h>
@@ -232,7 +233,7 @@
void* midi_port_buf = jack_port_get_buffer(midi_input_port, nframes);
jack_midi_event_t jack_midi_event;
jack_nframes_t jack_midi_event_index = 0;
- jack_nframes_t jack_midi_event_count = jack_midi_get_event_count(midi_port_buf, nframes);
+ jack_nframes_t jack_midi_event_count = jack_midi_get_event_count(midi_port_buf);
static snd_seq_event_t jack_seq_event_holder[3];
snd_seq_event_t *jack_seq_event = NULL, *osc_seq_event = NULL;
int had_midi_overflow = 0;
@@ -258,7 +259,7 @@
int count;
- jack_midi_event_get(&jack_midi_event, midi_port_buf, jack_midi_event_index, nframes);
+ jack_midi_event_get(&jack_midi_event, midi_port_buf, jack_midi_event_index);
jack_midi_event_index++;
jack_seq_event = jack_seq_event_holder;

View File

@ -0,0 +1,14 @@
--- src/universal_gui.c.orig 2009-01-11 15:40:04.000000000 +0100
+++ src/universal_gui.c 2009-01-11 15:42:28.000000000 +0100
@@ -610,8 +610,9 @@
(gpointer)port);
/* update bounds */
- gtk_adjustment_set_lower(GTK_ADJUSTMENT(port_data[port].adjustment), plb);
- gtk_adjustment_set_upper(GTK_ADJUSTMENT(port_data[port].adjustment), pub);
+ GTK_ADJUSTMENT(port_data[port].adjustment)->lower = plb;
+ GTK_ADJUSTMENT(port_data[port].adjustment)->upper = pub;
+ gtk_adjustment_changed(GTK_ADJUSTMENT(port_data[port].adjustment));
/* update labels */
if (port_data[port].bounded) {