diff options
author | Marcelo Araujo <araujo@FreeBSD.org> | 2010-12-11 16:34:54 +0000 |
---|---|---|
committer | Marcelo Araujo <araujo@FreeBSD.org> | 2010-12-11 16:34:54 +0000 |
commit | 0d34feceef7ca857eab060ca989bbc5212f167f6 (patch) | |
tree | cc290e3ab2ebe106a6fdd9d5cf5f41ee151086dd /x11-toolkits/gtkextra2/Makefile | |
parent | 560ab04e5991e18233ac35c50e0d50b67e34404c (diff) |
Notes
Diffstat (limited to 'x11-toolkits/gtkextra2/Makefile')
-rw-r--r-- | x11-toolkits/gtkextra2/Makefile | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/x11-toolkits/gtkextra2/Makefile b/x11-toolkits/gtkextra2/Makefile index 37bd8f25db54..04efbe1a0741 100644 --- a/x11-toolkits/gtkextra2/Makefile +++ b/x11-toolkits/gtkextra2/Makefile @@ -6,18 +6,17 @@ # PORTNAME= gtkextra -PORTVERSION= 2.1.1 -PORTREVISION= 9 +PORTVERSION= 2.1.2 CATEGORIES= x11-toolkits -MASTER_SITES= SF/scigraphica/GtkExtra/${PORTVERSION}%20Sources +MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} DISTNAME= ${PORTNAME:S/gtk/gtk+/}-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= A useful widget set complementary to GTK+ 2.0 -USE_AUTOTOOLS= libtool USE_GNOME= gtk20 gnomehack USE_GMAKE= yes +USE_AUTOTOOLS= libtool:22 USE_LDCONFIG= yes LATEST_LINK= gtkextra2 @@ -25,13 +24,15 @@ DOCSDIR= ${PREFIX}/share/doc/gtkextra2 PORTDOCS= * +post-patch: + @${REINPLACE_CMD} -e '/^SUBDIRS/s|docs||' ${WRKSRC}/Makefile.in + post-install: .if !defined(NOPORTDOCS) -. for d in reference tutorial - cd ${WRKSRC}/docs && \ - ${FIND} ${d} -type d ! -empty -exec ${MKDIR} "${DOCSDIR}/{}" \; && \ - ${FIND} ${d} -type f -exec ${INSTALL_DATA} "{}" "${DOCSDIR}/{}" \; -. endfor +.for d in reference tutorial + @${MKDIR} ${DOCSDIR}/${d} + @(cd ${WRKSRC}/docs/${d} && ${COPYTREE_SHARE} . ${DOCSDIR}) +.endfor .endif .include <bsd.port.mk> |