diff options
author | adamw <adamw@FreeBSD.org> | 2003-06-04 04:23:42 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2003-06-04 04:23:42 +0800 |
commit | 03a3ab3d81a6e2c1dbbcbc9bda7cfe3ed80e36f4 (patch) | |
tree | ff40b3d2086a97a20dced31919f2f2c949c18c32 /devel/devhelp/files | |
parent | 663c855d6200e4a930f90aae2df9b544b76310c6 (diff) | |
download | freebsd-ports-gnome-03a3ab3d81a6e2c1dbbcbc9bda7cfe3ed80e36f4.tar.gz freebsd-ports-gnome-03a3ab3d81a6e2c1dbbcbc9bda7cfe3ed80e36f4.tar.zst freebsd-ports-gnome-03a3ab3d81a6e2c1dbbcbc9bda7cfe3ed80e36f4.zip |
Fix things mucked up from the original port I committed:
* Change maintainer to submitter of ports/52446,
Rui Lopes <rui@ruilopes.com> (I missed this when
I committed this port)
* Add libgtkhtml/remove gtk20 from USE_GNOME
* Remove the REINPLACEs
<debugger> adamw_: we also don't need that first REINPLACE in post-patch.
<debugger> adamw_: and I don't known why you have placed the second
REINPLACE there :/
* Remove the lib/devhelp dir in the pkg-plist
* Add a patch to search for devhelp books in the
standard FreeBSD places
* Alphabetize the pkg-plist
* PORTREVISION bump
Submitted by: Rui Lopes <rui@ruilopes.com> (over IRC)
Diffstat (limited to 'devel/devhelp/files')
-rw-r--r-- | devel/devhelp/files/patch-src::dh-base.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/devel/devhelp/files/patch-src::dh-base.c b/devel/devhelp/files/patch-src::dh-base.c new file mode 100644 index 000000000000..c364d4ff1b99 --- /dev/null +++ b/devel/devhelp/files/patch-src::dh-base.c @@ -0,0 +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 @@ + + /* 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); |