Commit graph

122620 commits

Author SHA1 Message Date
obache
8157473afb Note Makefile using this common Makefile. 2008-02-12 14:32:50 +00:00
martti
0af68a1c61 Updated mail/clamav to 0.92.1 2008-02-12 14:23:26 +00:00
obache
43858425e3 DESTDIR ready. 2008-02-12 14:18:39 +00:00
martti
7ee1e1c1d3 Updated mail/clamav to 0.92.1
* Fix pkg/36853 with patch from Christos Zoulas (patch-ba)
* Lots of bug fixes since 0.92
2008-02-12 14:17:16 +00:00
obache
a0159eb4db Add DESTDIR support. 2008-02-12 13:56:48 +00:00
joerg
0b19984225 Sync hash headers of libncompat with NetBSD. 2008-02-12 13:44:06 +00:00
joerg
153a030a7f libnbcompat-20080212:
Add digest length defines for md5, rmd160 and sha1. Use
__BEGIN_DECLS/__END_DECLS. Drop _KERNEL conditionals.
2008-02-12 13:43:23 +00:00
joerg
f64c1d1265 Needs iceauth at runtime. Bump revision. Fixes PR 38007. 2008-02-12 12:20:44 +00:00
tnn
c0ef935fc8 Not MAKE_JOBS_SAFE. 2008-02-12 11:25:35 +00:00
rillig
3b0e8cd9dc Needs ${VARBASE}/games. While here, fixed pkglint warnings. 2008-02-12 08:03:49 +00:00
rillig
c792ea0fd0 Fixed pkglint warnings about hidden commands. Added a missing mkdir. 2008-02-12 08:01:26 +00:00
rillig
403e9f5a59 Needs ${VARBASE}/games. 2008-02-12 07:59:04 +00:00
rillig
cb491ea72a INSTALLATION_DIRS_FROM_PLIST is deprecated. Use AUTO_MKDIRS instead. 2008-02-12 07:39:09 +00:00
rillig
61a3467914 Needs ${VARBASE}/games precreated. 2008-02-12 07:17:26 +00:00
rillig
8a2e6d3e9e Removed outdated comment. 2008-02-12 07:16:40 +00:00
obache
cf0999e894 DESTDIR ready. 2008-02-12 03:01:03 +00:00
bjs
54e7fa6caf + Added devel/libarena version 20080211 [bjs 2008-02-12] 2008-02-12 02:42:05 +00:00
bjs
3555c5e26f Import libarena, a BSD-licensed memory allocator abstraction API.
Also included are four allocators which also serve as examples
as to how to use the interface.  AFAIK, it's sort of like vmem(9)
in userland (not that I know much about vmem, for the manpage
is quite terse, heh).

I imported this not as a dependency, but because I thought it
looked interesting, especially with regard to what's outlined
in the last paragraph.  I may use it in porting some linux audio
software at some point, though that's still a ways off ...

A short blurb:


Libarena is a custom memory allocator interface and implementation. Four
allocators are provided: flat LIFO arena allocator, object pool allocator
and two malloc(3) wrappers: one which returns the pointers unadulterated
and one which obeys the requested, arbitrary alignment. These can be used
directly, or through their exported prototype interfaces.

Libarena is meant to provide a baseline interface so allocator's can be
stacked, and to provide a simple and well defined interface for libraries
and applications without becoming mired in features or capabilities. It is
not meant to restrict or confine what custom allocators can actually
accomplish. For instance, the included pool and arena allocators include a
suite of string utilities which aren't available in the generic exportable
interface. Note that these string utilities are built upon a generic
interface (see util.h) which can take the prototypical allocation context,
so they are also available to any 3rd party compatible allocators.

Surprisingly few malloc(3) library "replacements" or plug-in interfaces
support a context pointer argument. They're useless for many or most of
the tasks where the ability to specify an alternate malloc(3) could
actually be useful, e.g. poor man's RAII. For network daemons especially
this feature is useful; all allocations for a particular session can be
freed simply by closing the lowest-level allocator object.
2008-02-12 02:40:37 +00:00
heinz
d60dd51dff Updated
devel/p5-OLE-Storage_Lite to 0.15
	converters/convmv to 1.12
2008-02-11 23:32:31 +00:00
heinz
26d7bfbe3d Removed GeoIP-1.4.2, convmv-1.12. 2008-02-11 23:31:55 +00:00
heinz
b4589e651f Updated to version 1.12.
Pkgsrc changes:
  - The packages supports installation to DESTDIR.
  - No more requirement for coreutils/findutils and patch-ab.
  - Switched to predefined REPLACE_SH instead of using subst.mk directly.
  - Cosmetic changes for MAKEFLAGS.
  - The shell script mk/check/check-portability.sh gets confused by some of
    the file names in the test archive: skip them.
  - Extracting files from testsuite.tar often fails on Darwin (with HFS?)
    so we skip this part.
  - Extract test archive with pax, it is available on every pkgsrc system.
  - Submitted patch-aa to author of convmv long ago.

Changes since version 1.10:
===========================
1.12
- now work with Perl 5.10 using an eval block
- GPL v2 and v3 now

1.11
- test suite compares sorted results of find to fix false alarms on some systems
- test suite now uses tar instead of cp for copying.
- fix a y/n mixup
- at startup we check if Perl::Encode is not too broken (bugs 37757 and 49830
  for now). Recent Perl releases are terribly broken. If this won't improve,
  I'll have to rewrite convmv in a language with more stable core functionality
  :-|. If you are distributor of convmv, please run make test before packaging
  to make sure you don't ship convmv with a broken Perl release.
2008-02-11 23:28:45 +00:00
hubertf
59647c2b3f Make this build on Mac OS X (tested: 10.4.11/intel). Bump ro revision 2. 2008-02-11 23:06:01 +00:00
reed
60096569a5 New package: slock. 2008-02-11 22:50:23 +00:00
reed
ee5484df34 New package.
Based on package from pkgsrc-wip, but updated. I changed
the maintainer because I didn't hear back about my changes.

From description:

Simple screen locker for X.

It blanks the screen and hides the pointer.  To unlock, type in
your password and press Enter.  The Escape key resets input and it
beeps on wrong password.
2008-02-11 22:48:17 +00:00
bjs
d3e04a5b2f + Updated devel/stgit to 20080128nb1 [bjs 2008-02-11] 2008-02-11 20:19:35 +00:00
bjs
d4896e866b Bump the revision because we now install the documentation. 2008-02-11 20:18:56 +00:00
adam
9e041dcdde Updated lang/lua to 5.1.3 2008-02-11 19:55:51 +00:00
adam
6800e4b351 Changes 5.1.3:
* This is a bug-fix release.
2008-02-11 19:54:55 +00:00
bjs
cc58849ad9 + Updated fonts/t1lib to 5.1.2 [bjs 2008-02-11] 2008-02-11 18:54:57 +00:00
bjs
b11ebb2ab0 update to t1lib-5.1.2 has been done 2008-02-11 18:54:28 +00:00
bjs
bb29706b91 Update to version 5.1.2. Patches removed above are no longer needed,
as they appear to have been incorporated upstream.  Additionally, the
following changes apply:

December 2006: t1lib-5.1.1:
---------------------------
- DESTDIR support was missing and has been addded in install-target i
  for type1afm.
- A bug fix in Anti-Aliasing subsampling code, which could make t1lib crash
  under certain conditions.
- Small number of further fixes, in particular with respect to the build
  mechanism.

December 2007: t1lib-5.1.2:
---------------------------
- Small number of fixes reported by users. The fixes pertain to a
  vulnerability issue, memory access issues.
- More decent handling if Encoding and / or FontBBox specification are
  missing (which is invalid with respect to the specification,
  but recoverable).
2008-02-11 18:53:38 +00:00
tnn
e6cee4e368 +sqlite3-3.5.6 2008-02-11 16:49:10 +00:00
tnn
2c7a2ce5a5 Updated pkgtools/bootstrap-mk-files to 20080211 2008-02-11 15:51:45 +00:00
tnn
aab417c507 Bump date for SunOS change. 2008-02-11 15:17:52 +00:00
tnn
017ce50be9 ${CC} -E is a better default choice for CPP than "cpp".
Prevents many packages from failing with "c preprocessor fails sanity check."
2008-02-11 15:12:39 +00:00
tnn
de10e7d82d Bump revision for PLIST fix, suggested by Greg Toxel. 2008-02-11 15:03:18 +00:00
gdt
b3808ad28d add
# used by audio/xine-arts/Makefile
# used by audio/xine-esound/Makefile
per pkglint
2008-02-11 13:58:41 +00:00
tnn
b68fb9c851 Add missing translation to PLIST 2008-02-11 13:29:10 +00:00
obache
e2e8cc8fcc + t1lib-5.1.2 2008-02-11 13:12:14 +00:00
bjs
bcd3f8655c + Updated sysutils/cdrtools to 2.01.01.37nb1 [bjs 2008-02-11] 2008-02-11 13:05:39 +00:00
bjs
b9b9c3652f The code to support real-time scheduling on NetBSD in the package
Makefile did not work; add something which does (it's a far better
check, too).

Bump rev.
2008-02-11 13:05:14 +00:00
drochner
4e4afd7c30 also patch CVE-2007-6697 (buffer overflow in gif parser), from upstream
CVS, bump PKGREVISION
2008-02-11 10:12:24 +00:00
obache
2daa80a6fd Add libthai. 2008-02-11 02:22:32 +00:00
obache
45df781367 Added devel/libthai version 0.1.9 2008-02-11 02:21:02 +00:00
obache
99f4f81d79 Import libthai version 0.1.9.
LibThai is a set of Thai language support routines aimed to ease developers'
tasks to incorporate Thai language support in their applications. It includes
important Thai-specific functions e.g. word breaking, input and output methods
as well as basic.
2008-02-11 02:20:44 +00:00
obache
91c47e57e5 Add libdatrie. 2008-02-11 02:13:44 +00:00
obache
bbde24e335 Added devel/libdatrie version 0.1.3 2008-02-11 02:12:29 +00:00
obache
89c74ef5d3 Import libdatrie version 0.1.3.
datrie is an implementation of double-array structure for representing trie, as
proposed by Junichi Aoe.

Trie is a kind of digital search tree, an efficient indexing method with O(1)
time complexity for searching. Comparably as efficient as hashing, trie also
provides flexibility on incremental matching and key spelling manipulation.
This makes it ideal for lexical analyzers, as well as spelling dictionaries.
2008-02-11 02:11:24 +00:00
dbj
dc747b8033 include opt and stubs on intel darwin leopard 2008-02-11 00:56:42 +00:00
tnn
40c910b11d Patch up some rather ... odd use of $HOME:
Instead of setting prefix=$(HOME) and HOME=${PREFIX},
just set prefix=$(PREFIX) directly.
2008-02-10 19:00:27 +00:00