diff options
author | jmmv <jmmv@pkgsrc.org> | 2004-08-31 08:21:47 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2004-08-31 08:21:47 +0000 |
commit | e9c6980176021cf7c9cdc8a94ed1d446916355b8 (patch) | |
tree | 3080f240e42941b8c11570bf1426cc4a3022c02e /devel/pango/Makefile | |
parent | b1c74b6e45b0ae70d6c12d8eb8549258218a8926 (diff) | |
download | pkgsrc-e9c6980176021cf7c9cdc8a94ed1d446916355b8.tar.gz |
Update to 1.4.1:
Changes in the package
======================
* Install compatibility symlinks for shared libraries to not break binary
programs linked against 1.4.0. This is just a workaround for our broken
libtool naming scheme and should be removed when it is fixed. Agreed
by rh@.
* Move installation of documentation to doc/, out of doc/html.
Overview of changes between 1.4.0 and 1.4.1
===========================================
* Win32 bug fixes [Tor Lillqvist, John Ehresman]
* Thai rendering improvements including OpenType support
[Theppitak Karoonboonyanan]
* Fix common crash in Hangul shaper [Changwoo Ryu]
* Fix various problems with language tag selection [Frederic Zhang]
* Documentation improvements [Felipe Heidrich, Doug Quale]
* Fix crash in line break code [Jeroen Zwartepoorte, Billy Biggs]
* Build fixes [J. Ali Harlow, Noah Misch]
* OpenType engine fixes [Kailash C. Chowksey, Sayamindu Dasgupta, Aamir Wali,
Masatake YAMATO, Soheil Hassas Yeganeh]
* Indic module bug fixes [Chris Blizzard, Rajkumar S, Taneem Ahmed,
Jungshik Shin]
* Misc bug fixes [Stanislav Brabec, Anders Carlsson, Behdad Esfahbod,
Jody Goldberg, Theppitak, Sven Neumann, Manish Singh, Morten Welinder]
Diffstat (limited to 'devel/pango/Makefile')
-rw-r--r-- | devel/pango/Makefile | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/devel/pango/Makefile b/devel/pango/Makefile index c76ce0c88ef..43276548598 100644 --- a/devel/pango/Makefile +++ b/devel/pango/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.43 2004/08/06 02:09:38 minskim Exp $ +# $NetBSD: Makefile,v 1.44 2004/08/31 08:21:47 jmmv Exp $ # -DISTNAME= pango-1.4.0 -PKGREVISION= 1 +DISTNAME= pango-1.4.1 CATEGORIES= devel MASTER_SITES= ftp://ftp.gtk.org/pub/gtk/v2.4/ \ ftp://ftp.cs.umn.edu/pub/gimp/gtk/v2.4/ \ @@ -31,7 +30,7 @@ PKGCONFIG_OVERRIDE+= pangoxft.pc.in CONFIGURE_ARGS+= --enable-gtk-doc=no CONFIGURE_ARGS+= --sysconfdir=${PREFIX}/libdata -CONFIGURE_ARGS+= --with-html-dir=${PREFIX}/share/doc/html +CONFIGURE_ARGS+= --with-html-dir=${PREFIX}/share/doc CONFIGURE_ARGS+= --with-qt=no # Avoid an ICE in gcc2 on sparc64 @@ -39,6 +38,16 @@ CONFIGURE_ENV+= F77=${FALSE} BUILDLINK_DEPENDS.Xrender+= Xrender>=0.8 +# XXX: Set up compatibility links for pango-1.4.0; this is just a workaround +# for our broken libtool naming, and it should be removed when our libtool +# is fixed. +post-install: +.for f in pango pangoft2 pangox pangoxft + cd ${PREFIX}/lib && ${LN} -fs lib${f}-1.0.so.400 lib${f}-1.0.so.399 + cd ${PREFIX}/lib && ${LN} -fs lib${f}-1.0.so.400.1 lib${f}-1.0.so.399.1 +.endfor +.undef f + .include "../../devel/glib2/buildlink3.mk" .include "../../devel/pkgconfig/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" |