Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

13
sysutils/libgamin/DESCR Normal file
View File

@@ -0,0 +1,13 @@
Gamin is a file and directory monitoring system defined to be a subset
of the FAM (File Alteration Monitor) system.
The main goals of the project are:
1. Minimize the security model of FAM -- the daemon runs under the
user account.
2. Simplify the code base, dropping some of the most exotic features
of FAM.
3. Provide an API and ABI compatible replacement for FAM.
4. Try to fix some other issues like resource consumption.
This package provides the Gamin libraries.

View File

@@ -0,0 +1,23 @@
# $NetBSD: Makefile,v 1.4 2010/04/18 18:22:43 jmmv Exp $
.include "../../sysutils/gamin/Makefile.common"
PKGNAME= ${DISTNAME:S/^gamin/lib&/}
PKGREVISION= 1
CONFIGURE_ARGS+= --enable-libgamin
post-install:
${INSTALL_DATA_DIR} ${DESTDIR}${DOCDIR}
cd ${WRKSRC}/doc; for file in *.html *.gif *.txt *.xml; do \
${INSTALL_DATA} $$file ${DESTDIR}${DOCDIR}/$$file; \
done
.include "options.mk"
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "Darwin"
BUILDLINK_TRANSFORM+= rm:-Wl,--version-script=./gamin_sym.version
.endif
.include "../../mk/bsd.pkg.mk"

28
sysutils/libgamin/PLIST Normal file
View File

@@ -0,0 +1,28 @@
@comment $NetBSD: PLIST,v 1.2 2009/06/14 18:16:08 joerg Exp $
include/fam.h
lib/libfam.la
lib/libgamin-1.la
lib/libgamin_shared.a
lib/pkgconfig/gamin.pc
share/doc/gamin/FAQ.html
share/doc/gamin/callbacks.gif
share/doc/gamin/client_server.gif
share/doc/gamin/config.html
share/doc/gamin/contacts.html
share/doc/gamin/debug.html
share/doc/gamin/debugging.txt
share/doc/gamin/devel.html
share/doc/gamin/differences.html
share/doc/gamin/downloads.html
share/doc/gamin/gamin-api.xml
share/doc/gamin/gamin-refs.xml
share/doc/gamin/gamin.html
share/doc/gamin/index.html
share/doc/gamin/internals.html
share/doc/gamin/news.html
share/doc/gamin/overview.html
share/doc/gamin/python.html
share/doc/gamin/security.html
share/doc/gamin/server_structs.gif
share/doc/gamin/socket.txt
share/doc/gamin/using.html

View File

@@ -0,0 +1,12 @@
# $NetBSD: buildlink3.mk,v 1.2 2009/03/20 19:25:24 joerg Exp $
BUILDLINK_TREE+= libgamin
.if !defined(LIBGAMIN_BUILDLINK3_MK)
LIBGAMIN_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.libgamin+= libgamin>=0.1.10
BUILDLINK_PKGSRCDIR.libgamin?= ../../sysutils/libgamin
.endif # LIBGAMIN_BUILDLINK3_MK
BUILDLINK_TREE+= -libgamin

View File

@@ -0,0 +1,11 @@
# $NetBSD: options.mk,v 1.1 2010/04/18 18:22:43 jmmv Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.libgamin
PKG_SUPPORTED_OPTIONS= debug
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+= --enable-debug
CONFIGURE_ARGS+= --enable-debug-api
.endif