Import entr-1.9 as sysutils/entr.

The Event Notify Test Runner is a general-purpose UNIX utility
intended to make rapid feedback and automated testing natural and
completely ordinary.
This commit is contained in:
wiz 2013-04-19 07:57:12 +00:00
parent 04eefd810c
commit ebf6867862
5 changed files with 55 additions and 0 deletions

3
sysutils/entr/DESCR Normal file
View file

@ -0,0 +1,3 @@
The Event Notify Test Runner is a general-purpose UNIX utility
intended to make rapid feedback and automated testing natural and
completely ordinary.

17
sysutils/entr/Makefile Normal file
View file

@ -0,0 +1,17 @@
# $NetBSD: Makefile,v 1.1 2013/04/19 07:57:12 wiz Exp $
#
DISTNAME= entr-1.9
CATEGORIES= sysutils
MASTER_SITES= http://entrproject.org/code/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://entrproject.org/code/
COMMENT= Run arbitrary commands when files change
#LICENSE= # TODO: (see mk/license.mk)
WRKSRC= ${WRKDIR}/eradman-entr-587c18272485
HAS_CONFIGURE= yes
MAKE_FILE= Makefile.bsd
.include "../../mk/bsd.pkg.mk"

3
sysutils/entr/PLIST Normal file
View file

@ -0,0 +1,3 @@
@comment $NetBSD: PLIST,v 1.1 2013/04/19 07:57:12 wiz Exp $
bin/entr
man/man1/entr.1

6
sysutils/entr/distinfo Normal file
View file

@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.1 2013/04/19 07:57:12 wiz Exp $
SHA1 (entr-1.9.tar.gz) = b339dd1710addac2e69885681e95f19129ec6576
RMD160 (entr-1.9.tar.gz) = ab55f7b6d17cb21d319062d3c79433d08d0d890a
Size (entr-1.9.tar.gz) = 8680 bytes
SHA1 (patch-Makefile.bsd) = 87d9a4474a819fc3840b616dfb31a2632dacf685

View file

@ -0,0 +1,26 @@
$NetBSD: patch-Makefile.bsd,v 1.1 2013/04/19 07:57:12 wiz Exp $
Support DESTDIR.
--- Makefile.bsd.orig 2013-04-13 13:09:24.000000000 +0000
+++ Makefile.bsd
@@ -30,13 +30,13 @@ clean:
rm -f makefile
install:
- @mkdir -p ${PREFIX}/bin
- @mkdir -p ${MANPREFIX}/man1
- install entr ${PREFIX}/bin
- install entr.1 ${MANPREFIX}/man1
+ @mkdir -p ${DESTDIR}${PREFIX}/bin
+ @mkdir -p ${DESTDIR}${MANPREFIX}/man1
+ install entr ${DESTDIR}${PREFIX}/bin
+ install entr.1 ${DESTDIR}${MANPREFIX}/man1
uninstall:
- rm ${PREFIX}/bin/entr
- rm ${MANPREFIX}/man1/entr.1
+ rm ${DESTDIR}${PREFIX}/bin/entr
+ rm ${DESTDIR}${MANPREFIX}/man1/entr.1
.PHONY: clean install uninstall