summaryrefslogtreecommitdiff
path: root/textproc/libxml
AgeCommit message (Collapse)AuthorFilesLines
2015-11-04Add SHA512 digests for distfiles for textproc categoryagc1-1/+2
Problems found locating distfiles: Package cabocha: missing distfile cabocha-0.68.tar.bz2 Package convertlit: missing distfile clit18src.zip Package php-enchant: missing distfile php-enchant/enchant-1.1.0.tgz Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2014-10-09Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.wiz1-3/+1
2013-12-23Reset maintainer for resigned developers.wiz1-3/+2
2012-10-25Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-2/+1
2011-09-01fix comments.obache2-4/+4
openSUSE's patch name is libxml-CVE-2009-2414_CVE-2009-2616, but it really fixes CVE-2009-2416 and CVE-2009-2414.
2011-09-01LICENSE=gnu-lgpl-v2.obache1-1/+2
2011-09-01Add a patch to fix CVE-2009-2414 and CVE-2009-2616,obache3-3/+85
taken from openSUSE 10.3 libxml-CVE-2009-2414_CVE-2009-2616.patch. Bump PKGREVISION.
2009-09-01Fix two typos. From Bug Hunting in PR 41973.wiz1-2/+2
2009-06-14Remove @dirrm entries from PLISTsjoerg1-5/+1
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
2008-07-14Mark as destdir ready.joerg1-1/+2
2007-12-02Remove Ex-MASTER_SITE. From Zafer Aydogan.wiz1-3/+2
2007-10-25+ jdomrillig1-1/+5
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam1-2/+2
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam1-1/+2
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-04-12Aligned the last line of the buildlink3.mk files with the first line, sorillig1-2/+2
that they look nicer.
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-3/+3
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
2005-12-27Mention "version 1" in the COMMENT and "old" in the DESCR to helpreed2-3/+3
distinguish this from official libxml.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 digests to the SHA1 ones.agc1-1/+2
2004-11-27Enable pkgviews installation.minskim1-1/+3
2004-11-20Backport security fixes (in the nanohttp and the nanoftp modules) fromjmmv5-5/+160
libxml2 (several buffer overflows). Bump PKGREVISION to 3.
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-3/+4
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-5/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-05-09Unused.wiz1-22/+0
2004-04-25Add include/gnome-xml/libxml/*.h to BUILDLINK_FILES, needed to get, e.g.,snj1-1/+2
net/soup to build.
2004-03-18Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properlyjlam1-3/+2
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-05Reorder location and setting of BUILDLINK_PACKAGES to match templatejlam1-4/+7
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-02-15bl3ifyjlam2-5/+23
2004-02-14PKGCONFIG_OVERRIDE is relative to WRKSRC.jmmv1-2/+2
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-3/+1
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2003-11-29minor formatting fix, s/Gnome/GNOME/grant1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-04-25Updated libxml to 1.8.17nb1martti3-2/+16
Add a patch from the official libxml CVS repository: 1.28 veillard "2001-04-18 11:10" - entities.h: andrew@ugh.net.au detected a double declaration
2002-10-30Replace hand made patches for pkgconfig tempates with PKGCONFIG_OVERRIDE.rh3-14/+3
2002-10-19Track directory layout change at MASTER_SITE_GNOME.rh1-2/+2
Patch provided in PR pkg/18701 by Julio Merino <jmmv@menta.net>
2002-10-09Unused.wiz1-54/+0
2002-09-23Ensure that the libxml headers may be found as <libxml/*>.jlam1-1/+2
2002-09-22*Conf.sh files don't need to be symlinked when using buildlink2.jlam1-2/+1
2002-08-26Updated libxml to 1.8.17martti5-17/+17
* parserold.c (xmlOldParseAttValue): Ensure you've got enough characters in your readahead buffer before you check NXT(1). * tree.c (xmlStaticCopyNode) : back port a fix from xml2 to correctly namespace copied nodes.
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam3-4/+26
buildlink2.mk files back into the main trunk. This provides sufficient buildlink2 infrastructure to start merging other packages from the buildlink2 branch that have already been converted to use the buildlink2 framework.
2002-07-14Add missing includes in libxml subdirectoryrh1-2/+3
2002-07-02Remove duplicate empty line.wiz1-2/+1
2002-03-26Add buildlink wrapper for gnome-1.0 so this actually works on systemsrh1-2/+6
without xpkgwedge, where it is not picked up "by accident" by another gnome wrapper.
2002-02-03This pkgs uses a newer libtool which means we need LIBTOOL_OVERRIDE notskrll1-2/+2
LTCONFIG_OVERRIDE. From Eric Schnoebelen <eric@cirr.com> in pkg/15472
2002-01-13patthern -> patternwiz1-2/+2
2001-10-31Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-10-03Substitute the real config script for the config wrapper script injlam1-1/+3
installed files. We don't want buildlink references to escape into the install directory.
2001-09-30Update libxml to 1.8.16. Changes are memory management improvements andrh4-15/+15
bugfixes.
2001-08-17If USE_CONFIG_WRAPPER is defined (implied by USE_BUILDLINK_ONLY), thenjlam1-2/+3
set FOO_CONFIG=${BUILDLINK_CONFIG_WRAPPER.foo} in both CONFIGURE_ENV and MAKE_ENV. We remove the check for GNU_CONFIGURE because if a package Makefile includes the buildlink.mk file, then it most likely wants to use the config script wrappers as well. Change suggested by Hubert Feyrer (hubertf) and Tomasz Luchowski (zuntum).