diff options
author | edwin <edwin@FreeBSD.org> | 2003-10-16 01:44:10 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-10-16 01:44:10 +0000 |
commit | 6a94ef318fb2071839e26a332244e491c2ae7829 (patch) | |
tree | c146708d69e0496726f87a6a29a30e29cf889a88 /x11-toolkits | |
parent | f4e0e91467bb7838d93157eb0db1167e777e6cdf (diff) | |
download | FreeBSD-ports-6a94ef318fb2071839e26a332244e491c2ae7829.zip FreeBSD-ports-6a94ef318fb2071839e26a332244e491c2ae7829.tar.gz |
[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>
Diffstat (limited to 'x11-toolkits')
-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 8220553..2ffe401 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; \ |