summaryrefslogtreecommitdiffstats
path: root/x11/gnome-panel/files
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2002-10-09 03:38:07 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2002-10-09 03:38:07 +0800
commit51d8329949f81115ae1de2911991acdc910effbd (patch)
tree1fdd1ef17f0b6b78097090b64468cae4ea890881 /x11/gnome-panel/files
parent632537d40bec29161c54c2010ae7f680c787e921 (diff)
downloadmarcuscom-ports-51d8329949f81115ae1de2911991acdc910effbd.tar
marcuscom-ports-51d8329949f81115ae1de2911991acdc910effbd.tar.gz
marcuscom-ports-51d8329949f81115ae1de2911991acdc910effbd.tar.bz2
marcuscom-ports-51d8329949f81115ae1de2911991acdc910effbd.tar.lz
marcuscom-ports-51d8329949f81115ae1de2911991acdc910effbd.tar.xz
marcuscom-ports-51d8329949f81115ae1de2911991acdc910effbd.tar.zst
marcuscom-ports-51d8329949f81115ae1de2911991acdc910effbd.zip
Add gnomepanel.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@22 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11/gnome-panel/files')
-rw-r--r--x11/gnome-panel/files/patch-applets::gen_util::clock.c27
-rw-r--r--x11/gnome-panel/files/patch-config.h.in14
-rw-r--r--x11/gnome-panel/files/patch-configure22
-rw-r--r--x11/gnome-panel/files/patch-doc_reference_panel-applet_Makefile.in11
-rw-r--r--x11/gnome-panel/files/patch-gnome-panel::GNOME_Panel.server.in13
5 files changed, 87 insertions, 0 deletions
diff --git a/x11/gnome-panel/files/patch-applets::gen_util::clock.c b/x11/gnome-panel/files/patch-applets::gen_util::clock.c
new file mode 100644
index 000000000..1f5fc1ad8
--- /dev/null
+++ b/x11/gnome-panel/files/patch-applets::gen_util::clock.c
@@ -0,0 +1,27 @@
+
+$FreeBSD: ports/x11/gnomepanel/files/patch-applets::gen_util::clock.c,v 1.1 2002/05/14 14:32:33 sobomax Exp $
+
+--- applets/gen_util/clock.c 2002/05/14 14:08:16 1.1
++++ applets/gen_util/clock.c 2002/05/14 14:12:56
+@@ -14,7 +14,9 @@
+ #include <dirent.h>
+ #include <string.h>
+ #include <time.h>
++#ifdef HAVE_LANGINFO_H
+ #include <langinfo.h>
++#endif
+
+ #include <panel-applet.h>
+ #include <panel-applet-gconf.h>
+@@ -684,7 +686,11 @@
+ cd->hourformat = panel_applet_gconf_get_int (applet, KEY_HOUR_FORMAT, &error);
+ if (error || (cd->hourformat != 12 && cd->hourformat != 24)) {
+ /* if value is not valid, set it according to locale */
++#ifdef HAVE_LANGINFO_H
+ const char *am = nl_langinfo (AM_STR);
++#else
++ const char *am = "AM";
++#endif
+ cd->hourformat = (am[0] == '\0') ? 24 : 12;
+
+ if (error)
diff --git a/x11/gnome-panel/files/patch-config.h.in b/x11/gnome-panel/files/patch-config.h.in
new file mode 100644
index 000000000..9f8390dbe
--- /dev/null
+++ b/x11/gnome-panel/files/patch-config.h.in
@@ -0,0 +1,14 @@
+
+$FreeBSD: ports/x11/gnomepanel/files/patch-config.h.in,v 1.1 2002/05/14 14:32:33 sobomax Exp $
+
+--- config.h.in 2002/05/14 14:15:00 1.1
++++ config.h.in 2002/05/14 14:15:35
+@@ -148,6 +148,8 @@
+ /* Define if you have the `strdup' function. */
+ #undef HAVE_STRDUP
+
++#undef HAVE_LANGINFO_H
++
+ /* Define if you have the <strings.h> header file. */
+ #undef HAVE_STRINGS_H
+
diff --git a/x11/gnome-panel/files/patch-configure b/x11/gnome-panel/files/patch-configure
new file mode 100644
index 000000000..e1d0567b7
--- /dev/null
+++ b/x11/gnome-panel/files/patch-configure
@@ -0,0 +1,22 @@
+
+$FreeBSD: ports/x11/gnomepanel/files/patch-configure,v 1.2 2002/05/14 14:32:33 sobomax Exp $
+
+--- configure.orig Tue May 14 17:16:32 2002
++++ configure Tue May 14 17:17:03 2002
+@@ -7232,6 +7232,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'
+@@ -9288,7 +9289,7 @@
+ # On IRIX 5.3, sys/types and inttypes.h are conflicting.
+
+ for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
+- inttypes.h stdint.h unistd.h
++ inttypes.h stdint.h unistd.h langinfo.h
+ do
+ as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+ echo "$as_me:9294: checking for $ac_header" >&5
diff --git a/x11/gnome-panel/files/patch-doc_reference_panel-applet_Makefile.in b/x11/gnome-panel/files/patch-doc_reference_panel-applet_Makefile.in
new file mode 100644
index 000000000..0d70349ad
--- /dev/null
+++ b/x11/gnome-panel/files/patch-doc_reference_panel-applet_Makefile.in
@@ -0,0 +1,11 @@
+--- doc/reference/panel-applet/Makefile.in.orig Tue Apr 30 23:24:10 2002
++++ doc/reference/panel-applet/Makefile.in Tue Apr 30 23:28:36 2002
+@@ -149,7 +149,7 @@
+ DOC_MODULE = panel-applet
+
+ # Where the html is to be installed
+-HTML_DIR = $(datadir)/gtk-doc/html
++HTML_DIR = $(prefix)/share/doc
+
+ # The top-level SGML file. Change it if you want.
+ DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml
diff --git a/x11/gnome-panel/files/patch-gnome-panel::GNOME_Panel.server.in b/x11/gnome-panel/files/patch-gnome-panel::GNOME_Panel.server.in
new file mode 100644
index 000000000..0e2367629
--- /dev/null
+++ b/x11/gnome-panel/files/patch-gnome-panel::GNOME_Panel.server.in
@@ -0,0 +1,13 @@
+
+$FreeBSD: ports/x11/gnomepanel/files/patch-gnome-panel::GNOME_Panel.server.in,v 1.1 2002/05/09 21:37:19 sobomax Exp $
+
+--- gnome-panel/GNOME_Panel.server.in 2002/05/09 21:00:58 1.1
++++ gnome-panel/GNOME_Panel.server.in 2002/05/09 21:01:11
+@@ -1,6 +1,6 @@
+ <oaf_info>
+
+-<oaf_server iid="OAFIID:GNOME_PanelShell" type="exe" location="panel-2">
++<oaf_server iid="OAFIID:GNOME_PanelShell" type="exe" location="gnome-panel">
+ <oaf_attribute name="repo_ids" type="stringv">
+ <item value="IDL:GNOME/Vertigo/PanelShell:1.0"/>
+ <item value="IDL:Bonobo/Unknown:1.0"/>