summaryrefslogtreecommitdiff
path: root/devel/libole2
AgeCommit message (Collapse)AuthorFilesLines
2007-09-19Remove libole2, both incarnations: was a part of gnome2, but last releasewiz6-86/+0
was in 2002 and it is currently unused. (gnome2-libole2 was a newer version of the libole2 package.)
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-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-23Add RMD160 digests.agc1-1/+2
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-04-27Unused.wiz1-21/+0
2004-04-25Convert to buildlink3.snj2-3/+23
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-2/+1
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2004-02-04replace LTCONFIG_OVERRIDE with LIBTOOL_OVERRIDE. fixes install ongrant1-2/+2
Solaris.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-05-05Line up PKGREVISION whitespace.jmmv1-2/+2
2003-05-02Dependency bumps, needed because of devel/pth's major bump, and relatedwiz2-3/+4
dependency bumps.
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-07Unused.wiz1-49/+0
2002-09-23Convert to buildlink2.wiz1-3/+3
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam1-0/+21
buildlink2.mk files back into the main trunk.
2001-11-11Update to version 0.2.4 (Required for Gnumeric 0.75)damon3-7/+7
Changelog: * libole2/ms-ole.c (ms_ole_open_vfs) : simplify. * libole2/ms-ole.c: first attempt at handling files that are not an integer number of 512-byte blocks. (ms_ole_open_vfs): Fix file leaks. Verify block sizes. (ms_ole_setup): Prepare the right number of blocks. (ms_ole_destroy): Plug leak. (ms_ole_lseek): Fix seek-from-end case. * libole2/ms-ole.c (ms_ole_stream_open) : Be more careful about where we are wiping. * libole2.spec.in: don't point at sgml files we don't install.
2001-11-01Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-10-03Substitute the real config script for the config wrapper script injlam1-2/+4
installed files. We don't want buildlink references to escape into the install directory.
2001-10-01buildlinkifyrh2-11/+57
2001-05-22Update libole2 to 0.2.3. Changes are minor bugfixes only.rh2-5/+5
2001-04-21Move to sha1 digests, and/or add distfile sizes.wiz1-1/+2
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-6/+4
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-04-07Update libole2 to 0.2.1. Changes include bug fixes, code cleanup, a betterrh2-4/+4
mmap abstraction, and some portability fixes.
2001-02-16Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2001-01-04The way that shared objects were handled in the PLISTs and bsd.pkg.mk wasagc1-1/+3
out of date - it was based on a.out OBJECT_FMT, and added entries in the generated PLISTs to reflect the symlinks that ELF packages uses. It also tried to be clever, and removed and recreated any symbolic links that were created, which has resulted in some fun, especially with packages which use dlopen(3) to load modules. Some recent changes to our ld.so to bring it more into line with other Operating Systems also exposed some cracks. + Modify bsd.pkg.mk and its shared object handling, so that PLISTs now contain the ELF symlinks. + Don't mess about with file system entries when handling shared objects in bsd.pkg.mk, since it's likely that libtool and the BSD *.mk processing will have got it right, and have a much better idea than we do. + Modify PLISTs to contain "ELF symlinks" + On a.out platforms, delete any "ELF symlinks" from the generated PLISTs + On ELF platforms, no extra processing needs to be done in bsd.pkg.mk + Modify print-PLIST target in bsd.pkg.mk to add dummy symlink entries on a.out platforms + Update the documentation in Packages.txt With many thanks to Thomas Klausner for keeping me honest with this.
2000-11-25Update libole2 to 0.1.7. Changes are bugfixes only.rh2-4/+4
2000-07-22Update libole2 to 0.1.6. Changes are bugfixes only.rh2-4/+4
2000-06-27Remove duplicate slash in master site list which breaks at leasttron1-2/+2
downloads from "ftp.sunet.se".
2000-06-26Initial import of libole2-0.1.5, an OLE2 streams parsing library.rh7-0/+68