diff options
author | adamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059> | 2003-11-25 13:03:30 +0800 |
---|---|---|
committer | adamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059> | 2003-11-25 13:03:30 +0800 |
commit | c8ee91254444623c00165d56a40a3c53b32205fa (patch) | |
tree | 1dcae0a6737248c2100a8da0d6e655e4a21e73a4 /audio/rhythmbox-devel/files | |
parent | 0ed3b070ca9335d635f7a6913b22b30f6a2cb383 (diff) | |
download | marcuscom-ports-c8ee91254444623c00165d56a40a3c53b32205fa.tar marcuscom-ports-c8ee91254444623c00165d56a40a3c53b32205fa.tar.gz marcuscom-ports-c8ee91254444623c00165d56a40a3c53b32205fa.tar.bz2 marcuscom-ports-c8ee91254444623c00165d56a40a3c53b32205fa.tar.lz marcuscom-ports-c8ee91254444623c00165d56a40a3c53b32205fa.tar.xz marcuscom-ports-c8ee91254444623c00165d56a40a3c53b32205fa.tar.zst marcuscom-ports-c8ee91254444623c00165d56a40a3c53b32205fa.zip |
Add rhythmbox to the development tree.
This comes to us in kindof a weird manner. It's the same version as
in the one in the FreeBSD tree, except this one builds with libgstplay-0.7.1.
Figured it'd be better to separate the code bases.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1364 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'audio/rhythmbox-devel/files')
-rw-r--r-- | audio/rhythmbox-devel/files/patch-configure | 10 | ||||
-rw-r--r-- | audio/rhythmbox-devel/files/patch-corba_Makefile.in | 11 | ||||
-rw-r--r-- | audio/rhythmbox-devel/files/patch-lib_rb-tree-dnd.c | 26 |
3 files changed, 47 insertions, 0 deletions
diff --git a/audio/rhythmbox-devel/files/patch-configure b/audio/rhythmbox-devel/files/patch-configure new file mode 100644 index 000000000..f195f07b4 --- /dev/null +++ b/audio/rhythmbox-devel/files/patch-configure @@ -0,0 +1,10 @@ +--- configure.orig Wed Dec 11 18:31:51 2002 ++++ configure Thu Dec 12 12:07:17 2002 +@@ -7414,6 +7414,7 @@ + + # This can be used to rebuild libtool when needed + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" ++$ac_aux_dir/ltconfig $LIBTOOL_DEPS + + # Always use our own libtool. + LIBTOOL='$(SHELL) $(top_builddir)/libtool' diff --git a/audio/rhythmbox-devel/files/patch-corba_Makefile.in b/audio/rhythmbox-devel/files/patch-corba_Makefile.in new file mode 100644 index 000000000..723285dfa --- /dev/null +++ b/audio/rhythmbox-devel/files/patch-corba_Makefile.in @@ -0,0 +1,11 @@ +--- corba/Makefile.in.orig Wed Aug 27 04:19:40 2003 ++++ corba/Makefile.in Wed Aug 27 04:19:56 2003 +@@ -237,7 +237,7 @@ + + noinst_HEADERS = Rhythmbox.h + +-idldir = $(prefix)/share/idl ++idldir = $(datadir)/idl + idl_DATA = Rhythmbox.idl + + CLEAN_FILES = $(rhythmbox_interface_idl_sources) diff --git a/audio/rhythmbox-devel/files/patch-lib_rb-tree-dnd.c b/audio/rhythmbox-devel/files/patch-lib_rb-tree-dnd.c new file mode 100644 index 000000000..5ce40a753 --- /dev/null +++ b/audio/rhythmbox-devel/files/patch-lib_rb-tree-dnd.c @@ -0,0 +1,26 @@ +--- lib/rb-tree-dnd.c.orig Tue Nov 11 20:58:54 2003 ++++ lib/rb-tree-dnd.c Tue Nov 11 20:59:17 2003 +@@ -710,9 +710,10 @@ + gint n_targets, + GdkDragAction actions) + { ++ RbTreeDndData *priv_data; + g_return_if_fail (GTK_IS_TREE_VIEW (tree_view)); + +- RbTreeDndData *priv_data = init_rb_tree_dnd_data (GTK_WIDGET(tree_view)); ++ priv_data = init_rb_tree_dnd_data (GTK_WIDGET(tree_view)); + + if (!priv_data->button_press_event_handler) { + +@@ -746,9 +747,10 @@ + gint n_targets, + GdkDragAction actions) + { ++ RbTreeDndData *priv_data; + g_return_if_fail (GTK_IS_TREE_VIEW (tree_view)); + +- RbTreeDndData *priv_data = init_rb_tree_dnd_data (GTK_WIDGET(tree_view)); ++ priv_data = init_rb_tree_dnd_data (GTK_WIDGET(tree_view)); + + if (!priv_data->drag_leave_handler) { + |