diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-10-16 01:44:10 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-10-16 01:44:10 +0000 |
commit | 20e707b57337f56e1aad09b65646679d9ab12d02 (patch) | |
tree | ca433740588c33c952edb3e80624047b960ae5f4 | |
parent | Correct whitespace in previous (diff) |
[PATCH] for x11-toolkits/gtk20-apireference .devhelp filenames
DevHelp expects to find .devhelp files in a directory like this: gtk/gtk.devhelp
but this port install it to: gtk20/gtk.devhelp
and not to: gtk20/gtk20.devhelp
PR: ports/52447
Submitted by: Rui Lopes <rui@ruilopes.com>
-rw-r--r-- | x11-toolkits/gtk20-apireference/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/x11-toolkits/gtk20-apireference/Makefile b/x11-toolkits/gtk20-apireference/Makefile index 82205537a4db..2ffe401f5894 100644 --- a/x11-toolkits/gtk20-apireference/Makefile +++ b/x11-toolkits/gtk20-apireference/Makefile @@ -7,6 +7,7 @@ PORTNAME= gtk20-apireference PORTVERSION= 20021211 +PORTREVISION= 1 CATEGORIES= x11-toolkits MASTER_SITES= http://developer.gnome.org/doc/API/ DISTFILES= glib-2.0-docs.tar.gz gtk-2.0-docs.tar.gz gdk-2.0-docs.tar.gz @@ -25,6 +26,7 @@ post-extract: ${RM} -f ${PLIST}; \ ${RM} -f ${PLIST}.tmp; \ for dir in gdk glib gtk; do \ + ${MV} $${dir}/$${dir}.devhelp $${dir}/$${dir}20.devhelp; \ find $${dir} -type f >> ${PLIST}.tmp ; \ ${ECHO} "@dirrm share/doc/$${dir}20" >> ${PLIST}.tmp; \ done; \ |