aboutsummaryrefslogtreecommitdiffstats
path: root/devel/devhelp/files
diff options
context:
space:
mode:
authormarcus <marcus@FreeBSD.org>2003-06-30 04:35:20 +0800
committermarcus <marcus@FreeBSD.org>2003-06-30 04:35:20 +0800
commita5c10c3adbbe04f1a6875b3909ebab9b8712201a (patch)
tree618f139296a15cb96333d195d11ecfa8257dc13e /devel/devhelp/files
parent0a35cf76153cec406efc3c8b43425dc7a57f13ac (diff)
downloadfreebsd-ports-gnome-a5c10c3adbbe04f1a6875b3909ebab9b8712201a.tar.gz
freebsd-ports-gnome-a5c10c3adbbe04f1a6875b3909ebab9b8712201a.tar.zst
freebsd-ports-gnome-a5c10c3adbbe04f1a6875b3909ebab9b8712201a.zip
Update to 0.7, and update the WWW link.
PR: 53905 Submitted by: maintainer
Diffstat (limited to 'devel/devhelp/files')
-rw-r--r--devel/devhelp/files/patch-configure10
-rw-r--r--devel/devhelp/files/patch-ltmain.sh51
-rw-r--r--devel/devhelp/files/patch-src::dh-base.c16
3 files changed, 59 insertions, 18 deletions
diff --git a/devel/devhelp/files/patch-configure b/devel/devhelp/files/patch-configure
deleted file mode 100644
index 22e7246eea3a..000000000000
--- a/devel/devhelp/files/patch-configure
+++ /dev/null
@@ -1,10 +0,0 @@
---- configure.orig Thu May 29 02:11:26 2003
-+++ configure Thu May 29 02:12:44 2003
-@@ -7639,6 +7639,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/devel/devhelp/files/patch-ltmain.sh b/devel/devhelp/files/patch-ltmain.sh
new file mode 100644
index 000000000000..d2334e2a55e7
--- /dev/null
+++ b/devel/devhelp/files/patch-ltmain.sh
@@ -0,0 +1,51 @@
+--- ltmain.sh.orig Sun Jun 29 11:51:47 2003
++++ ltmain.sh Sun Jun 29 21:02:37 2003
+@@ -1280,7 +1280,7 @@
+ esac
+ elif test "X$arg" = "X-lc_r"; then
+ case $host in
+- *-*-openbsd* | *-*-freebsd*)
++ *-*-openbsd* | *-*-freebsd4*)
+ # Do not include libc_r directly, use -pthread flag.
+ continue
+ ;;
+@@ -1290,8 +1290,16 @@
+ continue
+ ;;
+
++ -pthread)
++ compile_command="$compile_command -pthread"
++ finalize_command="$finalize_command -pthread"
++ compiler_flags="$compiler_flags -pthread"
++ continue
++ ;;
++
+ -module)
+ module=yes
++ build_old_libs=no
+ continue
+ ;;
+
+@@ -3000,6 +3008,9 @@
+ # problems, so we reset it completely
+ verstring=
+ ;;
++ *-*-freebsd*)
++ # FreeBSD doesn't need this...
++ ;;
+ *)
+ verstring="0.0"
+ ;;
+@@ -5428,10 +5439,12 @@
+ fi
+
+ # Install the pseudo-library for information purposes.
++ if /usr/bin/false; then
+ name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+ instname="$dir/$name"i
+ $show "$install_prog $instname $destdir/$name"
+ $run eval "$install_prog $instname $destdir/$name" || exit $?
++ fi
+
+ # Maybe install the static library, too.
+ test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
diff --git a/devel/devhelp/files/patch-src::dh-base.c b/devel/devhelp/files/patch-src::dh-base.c
index c364d4ff1b99..8e174831a535 100644
--- a/devel/devhelp/files/patch-src::dh-base.c
+++ b/devel/devhelp/files/patch-src::dh-base.c
@@ -1,10 +1,10 @@
---- src/dh-base.c.orig Tue Jun 3 12:21:34 2003
-+++ src/dh-base.c Tue Jun 3 12:23:04 2003
-@@ -155,6 +155,7 @@
+--- src/dh-base.c.orig Sat Jun 28 22:16:34 2003
++++ src/dh-base.c Sun Jun 29 13:40:23 2003
+@@ -222,6 +222,7 @@
- /* Insert the books from default gtk-doc install path */
- base_add_books (base, DATADIR"/gtk-doc/html");
-+ base_add_books (base, DATADIR"/../doc"); // FreeBSD default doc path
+ /* Insert the books from default gtk-doc install path. */
+ base_add_books (base, DATADIR "/gtk-doc/html");
++ base_add_books (base, DATADIR "/../doc"); // FreeBSD default doc path
base_add_books (base, "/usr/share/gtk-doc/html");
- base_add_books (base, DATADIR"/devhelp/books");
- dir = g_strconcat (g_getenv ("HOME"), "/.devhelp/books", NULL);
+ base_add_books (base, DATADIR "/devhelp/books");
+ dir = g_build_filename (g_get_home_dir (), ".devhelp", "books", NULL);