diff options
author | jmmv <jmmv@pkgsrc.org> | 2004-01-23 16:55:37 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2004-01-23 16:55:37 +0000 |
commit | 5ecc4ed9c66f0e4ffd29c5c5aca1038b5a70732b (patch) | |
tree | 347c01a663beaca64b249b26285a28bb7c7f8696 /textproc/scrollkeeper/Makefile | |
parent | d4ff22aceca6c1e3c96f94bce6d73be8b80715ec (diff) | |
download | pkgsrc-5ecc4ed9c66f0e4ffd29c5c5aca1038b5a70732b.tar.gz |
Update to 0.3.14. Changes since 0.3.12:
0.3.14
=======
- Build fixes:
- Correct problem with distributed intltool scripts.
- Update rpm spec file.
0.3.13
=======
- Runtime fixes:
- Use a per-user directory for storing the extracted contents files.
This avoids problems when multiple users share /tmp and use
scrollkeeper.
- Do XInclude processing on documents before extracting information.
- By default, do not use the network to retrieve required DTDs.
- Can be changed using the '-n' parameter to
scrollkeeper-install and friends.
- Do not segfault if an OMF file is invalid.
- Build fixes:
- Install various package documentation files.
- Tidy up the build process a little bit and fix some portability bugs.
- Update included gettext code.
- Build fixes for specific platforms (Solaris and *BSD systems).
- Detect installed version of the DocBook DTD at build time.
- Allow the location of system XML catalog to be specified.
- see the --with-xml-catalog flag.
- Install locale-specific program files correctly (i.e. portably).
- Allow scrollkeeper data directory to be customised
- see the --with-partial-db-dir flag.
- Upgrade supplied gettext and automake versions.
- Miscellaneous:
- Correctly register translated versions of documents by considering
their category, rather than their titles.
- Don't leak file descriptors when updating the database. This fixes
resource starvation problems on some systems.
- Fix some memory leaks.
- Should now work with IPv6-enabled systems.
- When using a non-default prefix, the scrollkeeper log files are
updated correctly.
- Many Sourceforge bug tracker bugs fixed and all outstanding patches
in the patch tracker evaluated and applied if appropriate.
- Translations updated.
Diffstat (limited to 'textproc/scrollkeeper/Makefile')
-rw-r--r-- | textproc/scrollkeeper/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/textproc/scrollkeeper/Makefile b/textproc/scrollkeeper/Makefile index 9e4e26dd03e..1ffd84cfccc 100644 --- a/textproc/scrollkeeper/Makefile +++ b/textproc/scrollkeeper/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.16 2003/12/04 19:48:26 xtraeme Exp $ +# $NetBSD: Makefile,v 1.17 2004/01/23 16:55:37 jmmv Exp $ # -DISTNAME= scrollkeeper-0.3.12 -PKGREVISION= 3 +DISTNAME= scrollkeeper-0.3.14 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=scrollkeeper/} \ ${MASTER_SITE_GNOME:=sources/scrollkeeper/0.3/} @@ -26,6 +25,8 @@ LIBTOOL_OVERRIDE= ${WRKSRC}/libtool CONFIGURE_ARGS= --localstatedir=${SCROLLKEEPER_DATADIR} CONFIGURE_ARGS+= --sharedstatedir=${SCROLLKEEPER_DATADIR} CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} +CONFIGURE_ARGS+= --with-partial-db-dir=db +CONFIGURE_ARGS+= --with-xml-catalog=${BUILDLINK_PREFIX.xmlcatmgr}/share/xml/catalog .include "../../mk/bsd.prefs.mk" @@ -50,5 +51,6 @@ CONF_FILES= ${EGDIR}/scrollkeeper.conf ${PKG_SYSCONFDIR}/scrollkeeper.conf .include "../../textproc/libxml2/buildlink2.mk" .include "../../textproc/libxslt/buildlink2.mk" .include "../../textproc/intltool/buildlink2.mk" +.include "../../textproc/xmlcatmgr/buildlink2.mk" .include "../../mk/bsd.pkg.mk" |