diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2004-12-15 21:00:17 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2004-12-15 21:00:17 +0000 |
commit | e1f4c55aee5df36fac4c0bc9ac76948fbe4ff79f (patch) | |
tree | 06d8f5f173e2b40a93e4ca6b57cafc3645c4bba7 /x11-toolkits/linux-gtk2/Makefile | |
parent | af8e89779085b1129e28af803a47ac88d8024d6d (diff) |
- Adds the dependencies needed to run gtk-query-immodules-2.0 and
gdk-pixbuf-query-loaders;
- Generates gtk.immodules in post-install rather than shipping it with
the port;
- Generates gdk-pixbuf.loaders.
PR: ports/68133
Submitted by: Jean-Yves Lefort
Approved by: maintainer time-out.
Notes
Notes:
svn path=/head/; revision=124157
Diffstat (limited to 'x11-toolkits/linux-gtk2/Makefile')
-rw-r--r-- | x11-toolkits/linux-gtk2/Makefile | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/x11-toolkits/linux-gtk2/Makefile b/x11-toolkits/linux-gtk2/Makefile index 856ec0ed2cf2..58480bb647dc 100644 --- a/x11-toolkits/linux-gtk2/Makefile +++ b/x11-toolkits/linux-gtk2/Makefile @@ -7,12 +7,21 @@ PORTNAME= gtk2 PORTVERSION= 2.2.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-toolkits linux MAINTAINER= trevor@FreeBSD.org COMMENT= GTK+ library, version 2.X, i386 Linux binary +# these libraries are required by gtk-query-immodules-2.0 or +# gdk-pixbuf-query-loaders +RUN_DEPENDS= ${LINUXBASE}/usr/lib/libglib-2.0.so.0:${PORTSDIR}/devel/linux-glib2 \ + ${LINUXBASE}/usr/lib/libatk-1.0.so.0:${PORTSDIR}/accessibility/linux-atk \ + ${LINUXBASE}/usr/lib/libjpeg.so.62:${PORTSDIR}/graphics/linux-jpeg \ + ${LINUXBASE}/usr/lib/libpng12.so.0:${PORTSDIR}/graphics/linux-png \ + ${LINUXBASE}/usr/lib/libtiff.so.3.5:${PORTSDIR}/graphics/linux-tiff \ + ${LINUXBASE}/usr/lib/libpango-1.0.so.0:${PORTSDIR}/x11-toolkits/linux-pango + BASEVERSION= 9 ONLY_FOR_ARCHS= i386 PLIST= ${WRKDIR}/plist @@ -27,13 +36,15 @@ pre-install: ${RM} -rf ${WRKSRC}/tmp ${MKDIR} ${WRKSRC}/tmp cd ${WRKSRC}/tmp; \ - rpm2cpio < ${DISTDIR}/${DIST_SUBDIR}/${RPM_SET} | cpio -id; \ + rpm2cpio < ${DISTDIR}/${DIST_SUBDIR}/${RPM_SET} | ${CPIO} -id; \ ${FIND} * -type f -o -type l >> ${PLIST}; \ - ${FIND} -d * -type d | ${GREP} -E 'locale|gtk|themes' | \ - ${SED} -e 's:^:@dirrm :' >> ${PLIST} + ${FIND} -d * -type d | ${GREP} -E 'gtk|themes' | \ + ${SED} -e 's:^:@dirrm :' >> ${PLIST}; \ + ${FIND} -d * -type d | ${GREP} locale | \ + ${SED} -e 's:^:@unexec rmdir %D/:;s:$$: 2>/dev/null || true:' >> ${PLIST} post-install: - ${INSTALL_DATA} ${FILESDIR}/gtk.immodules ${PREFIX}/etc/gtk-2.0/ - ${TOUCH} ${PREFIX}/etc/gtk-2.0/gdk-pixbuf.loaders + ${PREFIX}/usr/bin/gtk-query-immodules-2.0 > ${PREFIX}/etc/gtk-2.0/gtk.immodules + ${PREFIX}/usr/bin/gdk-pixbuf-query-loaders > ${PREFIX}/etc/gtk-2.0/gdk-pixbuf.loaders .include "../linux-gtk/Makefile" |