mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
- Add libinotify, a inotify-compatible file monitoring library, based
on kevent(2). Author: Dmitry Matveev <me@dmitrymatveev.co.uk> WWW: https://github.com/dmatveev/libinotify-kqueue
This commit is contained in:
parent
a99a76b057
commit
67aae8e25d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=280739
@ -833,6 +833,7 @@
|
||||
SUBDIR += libhid
|
||||
SUBDIR += libhoard
|
||||
SUBDIR += libical
|
||||
SUBDIR += libinotify
|
||||
SUBDIR += libiqxmlrpc
|
||||
SUBDIR += libisofs
|
||||
SUBDIR += libixp
|
||||
|
27
devel/libinotify/Makefile
Normal file
27
devel/libinotify/Makefile
Normal file
@ -0,0 +1,27 @@
|
||||
# New ports collection makefile for: libinotify
|
||||
# Date created: 2011-08-29
|
||||
# Whom: stas
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= libinotify
|
||||
PORTVERSION= 20110829
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ftp://ftp.SpringDaemons.com/soft/
|
||||
|
||||
MAINTAINER= stas@FreeBSD.org
|
||||
COMMENT= Kevent based inotify compatible library
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
USE_BZIP2= yes
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
#
|
||||
# Get rid of .la and static library files
|
||||
#
|
||||
post-configure:
|
||||
@${REINPLACE_CMD} -E -e \
|
||||
'/Install the pseudo-library/,/staticlibs=/s,^,#,' ${WRKSRC}/libtool
|
||||
|
||||
.include <bsd.port.mk>
|
2
devel/libinotify/distinfo
Normal file
2
devel/libinotify/distinfo
Normal file
@ -0,0 +1,2 @@
|
||||
SHA256 (libinotify-20110829.tar.bz2) = d6bbefd8e4bee680c6f9c860e0a9611c51bee8f557c4b021b30cfc3b15238028
|
||||
SIZE (libinotify-20110829.tar.bz2) = 275381
|
9
devel/libinotify/pkg-descr
Normal file
9
devel/libinotify/pkg-descr
Normal file
@ -0,0 +1,9 @@
|
||||
This library provides inotify-compatible interface for applications,
|
||||
that need to monotor changes happening in a filesystem. It can be useful
|
||||
when porting Linux applications, which often use inotify interface.
|
||||
|
||||
The IN_OPEN, IN_CLOSE_WRITE and IN_CLOSE_NOWRITE events are not yet
|
||||
implemented, so the relevant tests are known to fail.
|
||||
|
||||
Author: Dmitry Matveev <me@dmitrymatveev.co.uk>
|
||||
WWW: https://github.com/dmatveev/libinotify-kqueue
|
4
devel/libinotify/pkg-plist
Normal file
4
devel/libinotify/pkg-plist
Normal file
@ -0,0 +1,4 @@
|
||||
include/sys/inotify.h
|
||||
lib/libinotify.so
|
||||
lib/libinotify.so.0
|
||||
@dirrm include/sys
|
Loading…
Reference in New Issue
Block a user