summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-08-15Add PLIST part of last commit, thanks to marino@ for reminder.jnemeth1-1/+2
2012-08-15prevent to specify cfile for py_compile.compile to be PEP 3147 comliant.obache2-1/+26
2012-08-15Implement a build fix for the situation where some people were seeingjnemeth1-1/+9
chan_mgcp.so being built and installed causing PLIST issues.
2012-08-15Remove unnecessarily libXp; PKGREVISION -> 3.dholland1-3/+2
2012-08-15Mask on python25 because it depends on py-stompclient.dholland1-1/+4
2012-08-15Doesn't work on python25.dholland1-1/+3
2012-08-15Updated multimedia/adobe-flash-plugin11 to 11.2.202.238obache1-1/+2
2012-08-15Update adobe-flash-plugin11 to 11.2.202.238 for APSB12-18.obache2-6/+6
2012-08-14Updated chat/libotr to 3.2.1gdt1-1/+2
2012-08-14Update to 3.2.1.gdt6-165/+7
(This is a security release, but pkgsrc already had patches from upstream.) This version corrects two heap overflows reported by our users: - A small write overflow, reported by Justin Ferguson - A large read overflow, reported by Ben Hawkes
2012-08-14web2c requires ptexenc>=1.3.0.minskim1-3/+3
This fixes PR 46787.
2012-08-14The previous commit actually doesn't affect the build of math/py-numpy,fhajny1-1/+2
but changes the py-numpy binary package in order for math/py-scipy to build successfully (at least on SmartOS). Bump PKGREVISION.
2012-08-14libmtp updatemarkd1-1/+2
2012-08-14Update libmtp to version 1.1.3markd6-11/+38
Changes unknown other than now supports Samsung Galaxy phones.
2012-08-14Fortran objects need -fPIC handling (fixes at least SmartOS)fhajny1-1/+2
2012-08-14Fix build on SmartOS by making sure linker always gets -sharedfhajny3-5/+24
2012-08-14_dbus_poll: Set the timeout value argument to poll to -1 wheneverabs3-4/+19
it is less than -1 to avoid kde4 session start hang From: Sverre Froyen Bump PKGREVISION
2012-08-14emulators/vice: Fix all non-NetBSD platformsmarino3-10/+53
* Update configure script to force all platforms to use same installation path as NetBSD * The PLIST was built with fc-cache detected. This implicates fontconfig as a dependency (without it, font still install but with a diff. name) * like NetBSD, define HAVE_STDINT_H (other platforms may need it too) Revbump required because package would have installed before without PKG_DEVELOPER=yes, albeit incorrectly.
2012-08-14as with python27: avoid POSIX semaphores on NetBSD, this is brokendrochner3-3/+18
at least on -current
2012-08-14avoid POSIX semaphores on NetBSD -- at least on -current they causedrochner3-2/+18
serious misbehavior (access to closed file descriptors, fd leaks) which makes eg xentools completely unusable bump PKGREV
2012-08-14replace the bl3 inclusion for librsvg by a plain dependency -- it isdrochner1-2/+4
a pure runtime dependency, and there is no need to participate in recursive PKGREV bumps
2012-08-14Make "user-destdir" the default PKG_DESTDIR_SUPPORT valueasau1-2/+2
since this is the general case these days and other cases are exceptions. This simplifies development and prevents making some mistakes.
2012-08-14Mark packages with no staged installation support explicitly ↵asau19-19/+56
(PKG_DESTDIR_SUPPORT=none).
2012-08-14Added net/coilmq version 0.6.1imil1-1/+2
2012-08-14add & enable coilmqimil1-1/+2
2012-08-14Initial import of coilmq, version 0.6.1, into the NetBSD Packages Collection.imil4-0/+193
CoilMQ is a simple, configurable STOMP message broker (aka STOMP server) written in Python. This project is inspired by the simple design of the Ruby stompserver project by Patrick Hurley and Lionel Bouton. The goal of this project is to provide a well-tested and well-documented Python implementation with a good set of built-in functionality and numerous paths for extensibility.
2012-08-14Introduce explicit name for no staged installation support: "none".asau2-7/+10
Keep "none" a default value for PKG_DESTDIR_SUPPORT for now.
2012-08-14editors/nvi-m17n: Use provided <sys/queue.h>marino1-4/+6
DragonFly doesn't have CIRCLEQ_* macros anymore. They were replaced with TAILQ_*. As a result, DragonFly needs the provided sys/queue.h to define them. Also, like NetBSD, it doesn't support streams, so disable pty.
2012-08-14Added p5-Quota. Also note bump of xmountains from two weeks ago that Idholland1-1/+3
evidently forgot again to commit at the time.
2012-08-14Added p5-Quota.dholland1-1/+2
2012-08-14Add new package p5-Quota 1.6.7, perl bindings for quotas.dholland6-0/+253
Originally from wip with netbsd-6 patches sketched by yours truly and finished/tested by Edgar Fuss. The Quota module provides access to file system quotas. The quotactl system call or ioctl is used to query or set quotas on the local host, or queries are submitted via RPC to a remote host. Mount tables can be parsed with getmntent and paths can be translated to device files (or whatever the actual quotactl implementations needs as argument) of the according file system.
2012-08-14Drop charset.alias from PLIST, bump PKGREVISION.asau2-4/+3
2012-08-14Added devel/py-daemon version 1.5.5imil1-1/+2
2012-08-14add & enable py-daemonimil1-1/+2
2012-08-14Initial import of py-daemon, version 1.5.5, into the NetBSD Packages Collection.imil4-0/+65
A well-behaved Unix daemon process is tricky to get right, but the required steps are much the same for every daemon program. A DaemonContext instance holds the behaviour and configured process environment for the program; use the instance as a context manager to enter a daemon state.
2012-08-14dded devel/py-lockfile version 0.9.1imil1-1/+2
2012-08-14add & enable py-lockfileimil1-1/+2
2012-08-14Initial import of py-lockfile, version 0.9.1, into the NetBSD Packagesimil4-0/+51
Collection. The lockfile package exports a LockFile class which provides a simple API for locking files. Unlike the Windows msvcrt.locking function, the fcntl.lockf and flock functions, and the deprecated posixfile module, the API is identical across both Unix (including Linux and Mac) and Windows platforms. The lock mechanism relies on the atomic nature of the link (on Unix) and mkdir (on Windows) system calls. An implementation based on SQLite is also provided, more as a demonstration of the possibilities it provides than as production-quality code.
2012-08-14Honour VARBASE, bump PKGREVISION.asau1-3/+3
2012-08-14eliminate last duplicates entry.obache1-2/+1
2012-08-14Updated misc/dvtm to 0.7obache2-3/+4
2012-08-14Update dvtm to 0.7.obache2-18/+18
PR 46585 by maintainer Leonardo Taccari. Pkgsrc changes: * Switched to <../..mk/curses.buildlink3.mk>: now dvtm also works with curses(3). * Reset maintainership to pkgsrc-users@NetBSD.org. Changes: * on resize backfill text from the buffer if possible * fix for a segfault in resize code * support for the 8 basic highlighted colors * compilation fixes for BSD curses and pdcurses (however the latter doesn't actually work due to the select(2) driven event loop of dvtm) * some AIX fixes * graphmode fixes * fibonacci layout (not enabled by default) * dynamic color changes depending on the window title configurable in config.h * window borders are now drawn using the colors specified in config.h * rudimentary mouse support, that is mouse events will be passed to the underlying terminal application * relicense terminal emulation component from LGPL to ISC * various source code cleanups (code reviews and patches are always welcome)
2012-08-14Instead of pass down LUA_ROOT as CFLAGS, replace its definition in the source,obache3-11/+14
avoid to specify nasty C string macro in the command line.
2012-08-14regenwiz2-42/+42
2012-08-14Fix REPLACE_PYTHON example, prompted by Moritz Wilhelmy.wiz1-3/+4
2012-08-14Updated net/istgt to 20120811sborrill1-1/+2
2012-08-14Update to 20120811 release. Changelog:sborrill2-6/+6
Support Virtual Disk(VDI,VHD,VMDK) by VirtualBox DSO (VBoxDDU.so). Use ADAPTIVE_NP for some mutex. Decrese mutex lock time at transfer task. Print # of reload count to syslog. LU updating (except connected LU). Ignore reload error, and retry next reload by SIGUP. Use gcc 4.1 atomic builtin functions. Fix some memory leak at exit. Accept up to two SCSI commands in one LUN loop. Omit inaccessible PG on SendTargets. (when multiple PG specified) Faster normal exit. Remove extra warning by clang. Add NetBSD rc script.
2012-08-14librsvg links against libpangocairo, propagate this dependency toodrochner1-1/+2
2012-08-14Improve RESTRICTED.wiz1-2/+2
2012-08-14Needs xextproto (like many libXext dependencies, which is why thiswiz1-1/+2
should be added to libXext/buildlink3.mk, but this has: # XXX don't include xextproto/bl3 here; packages checking for xext.pc must # include it theirselfes requested by joerg because "most packages don't need it").