diff options
author | pav <pav@FreeBSD.org> | 2011-08-08 20:02:03 +0000 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2011-08-08 20:02:03 +0000 |
commit | 99097e4dfe15c60cb80c0f3d179cf11ea2927376 (patch) | |
tree | cd69e578dc8bdc7c69aaeaaf70e408d4bcb6ecae | |
parent | 3b0881321b6a19dc6bf3e52f39af3392b9d976f9 (diff) | |
download | FreeBSD-ports-99097e4dfe15c60cb80c0f3d179cf11ea2927376.zip FreeBSD-ports-99097e4dfe15c60cb80c0f3d179cf11ea2927376.tar.gz |
- Reviwe flock
PR: ports/159114
Submitted by: Andrey Zonov <andrey@zonov.org>
-rw-r--r-- | MOVED | 1 | ||||
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/flock/Makefile | 23 | ||||
-rw-r--r-- | sysutils/flock/distinfo | 2 | ||||
-rw-r--r-- | sysutils/flock/pkg-descr | 3 |
5 files changed, 29 insertions, 1 deletions
@@ -1831,7 +1831,6 @@ sysutils/deleted||2011-05-01|Has expired: Upstream disapear and distfile is no m sysutils/dolly+||2011-05-01|Has expired: Upstream disapear and distfile is no more available sysutils/durep||2011-05-01|Has expired: Upstream disapear and distfile is no more available sysutils/dvdtape||2011-05-01|Has expired: Upstream disapear and distfile is no more available -sysutils/flock||2011-05-01|Has expired: Upstream disapear and distfile is no more available sysutils/fontedit||2011-05-01|Has expired: Upstream disapear and distfile is no more available sysutils/ftrace||2011-05-01|Has expired: Upstream disapear and distfile is no more available sysutils/gfslicer||2011-05-01|Has expired: Upstream disapear and distfile is no more available diff --git a/sysutils/Makefile b/sysutils/Makefile index 6b38b8b..456ad0d 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -233,6 +233,7 @@ SUBDIR += flasher SUBDIR += flashrom SUBDIR += flexbackup + SUBDIR += flock SUBDIR += flog SUBDIR += flyback SUBDIR += fonteditfs diff --git a/sysutils/flock/Makefile b/sysutils/flock/Makefile new file mode 100644 index 0000000..e27d342 --- /dev/null +++ b/sysutils/flock/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: flock +# Date created: 26 May 2011 +# Whom: Andrey Zonov <andrey@zonov.org> +# +# $FreeBSD$ +# + +PORTNAME= flock +PORTVERSION= 2.19 +CATEGORIES= sysutils +MASTER_SITES= http://www.zonov.org/${PORTNAME}/ + +MAINTAINER= andrey@zonov.org +COMMENT= Manage locks from shell scripts + +PLIST_FILES= bin/${PORTNAME} +MAN1= ${PORTNAME}.1 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MANPREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/sysutils/flock/distinfo b/sysutils/flock/distinfo new file mode 100644 index 0000000..0c16c7c --- /dev/null +++ b/sysutils/flock/distinfo @@ -0,0 +1,2 @@ +SHA256 (flock-2.19.tar.gz) = 9716618042a753cc4bd6e787d0886ea5fce8a167d5ce62421cee2c09ea86fbda +SIZE (flock-2.19.tar.gz) = 5452 diff --git a/sysutils/flock/pkg-descr b/sysutils/flock/pkg-descr new file mode 100644 index 0000000..eb42283 --- /dev/null +++ b/sysutils/flock/pkg-descr @@ -0,0 +1,3 @@ +Manage locks from shell scripts + +WWW: http://ftp.kernel.org/pub/linux/utils/util-linux/ |