diff options
author | seb <seb@pkgsrc.org> | 2005-05-23 21:32:01 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2005-05-23 21:32:01 +0000 |
commit | 58928be465e8d13574d699eb70d2907ad062c385 (patch) | |
tree | 4b532b97a5b5ba45602f844cc6fdd6b4bfa901c9 /textproc/xmlstarlet/Makefile | |
parent | 920592c1cb11afcda00ecd41983d3b978817bdee (diff) | |
download | pkgsrc-58928be465e8d13574d699eb70d2907ad062c385.tar.gz |
Update to version 1.0.1.
Package changes: install documentation files, add test target support.
Changes since last packaged version (0.9.3):
Changes in 1.0.1
1. Recompiled against recent libxml2-2.6.18 and libxslt-1.1.13 libraries
2. New binaries for Windows/Linux/Solaris
3. Fixed several pyx/depyx bugs
4. Window binary has been compiled with iconv to support more encodings
Changes in 1.0.0
1. Fixed few core dumps
2. Recompiled against recent libxml2-2.6.17 and libxslt-1.1.12 libraries
3. New binaries for Windows/Linux
4. Updated documentation
Changes in 0.9.5
1. Fixed security bugs (buffer overflows)
2. Recompiled against recent libxml2-2.6.13 and libxslt-1.1.10 libraries
3. New binaries for Windows/Linux
4. Updated documentation
Diffstat (limited to 'textproc/xmlstarlet/Makefile')
-rw-r--r-- | textproc/xmlstarlet/Makefile | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/textproc/xmlstarlet/Makefile b/textproc/xmlstarlet/Makefile index 02e1cb16d56..ea0a76be4cd 100644 --- a/textproc/xmlstarlet/Makefile +++ b/textproc/xmlstarlet/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.4 2005/04/11 21:47:43 tv Exp $ +# $NetBSD: Makefile,v 1.5 2005/05/23 21:32:01 seb Exp $ # -DISTNAME= xmlstarlet-0.9.3 -PKGREVISION= 1 +DISTNAME= xmlstarlet-1.0.1 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=xmlstar/} @@ -16,6 +15,18 @@ CONFIGURE_ARGS+= --with-libxml-prefix=${BUILDLINK_PREFIX.libxml2} CONFIGURE_ARGS+= --with-libxslt-prefix=${BUILDLINK_PREFIX.libxslt} PTHREAD_OPTS+= require +BUILDLINK_DEPENDS.libxml2+= libxml2>=2.6.12 +BUILDLINK_DEPENDS.libxslt+= libxslt>=1.1.9 + +TEST_TARGET= check + +INSTALLATION_DIRS+= share/doc/xmlstarlet + +post-install: + ${INSTALL_DATA} ${WRKSRC}/doc/xmlstarlet-ug.pdf ${PREFIX}/share/doc/xmlstarlet + ${INSTALL_DATA} ${WRKSRC}/doc/xmlstarlet.txt ${PREFIX}/share/doc/xmlstarlet + + .include "../../textproc/libxml2/buildlink3.mk" .include "../../textproc/libxslt/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" |