From 385ae8ee26c3669d173d50a5be3bb222f6643595 Mon Sep 17 00:00:00 2001 From: wiz Date: Mon, 3 Oct 2011 11:02:28 +0000 Subject: Initial import of ts-0.7.0, packaged for wip by Jan Ć mydke. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A simple and flexible batch system for a single machine. Each user uses a personal queue which can run several jobs in parallel. --- sysutils/ts/DESCR | 2 ++ sysutils/ts/Makefile | 18 ++++++++++++++++++ sysutils/ts/PLIST | 3 +++ sysutils/ts/distinfo | 6 ++++++ sysutils/ts/patches/patch-aa | 22 ++++++++++++++++++++++ 5 files changed, 51 insertions(+) create mode 100644 sysutils/ts/DESCR create mode 100644 sysutils/ts/Makefile create mode 100644 sysutils/ts/PLIST create mode 100644 sysutils/ts/distinfo create mode 100644 sysutils/ts/patches/patch-aa (limited to 'sysutils') diff --git a/sysutils/ts/DESCR b/sysutils/ts/DESCR new file mode 100644 index 00000000000..92cea77cae3 --- /dev/null +++ b/sysutils/ts/DESCR @@ -0,0 +1,2 @@ +A simple and flexible batch system for a single machine. Each user uses a +personal queue which can run several jobs in parallel. diff --git a/sysutils/ts/Makefile b/sysutils/ts/Makefile new file mode 100644 index 00000000000..9608b4cc214 --- /dev/null +++ b/sysutils/ts/Makefile @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1.1.1 2011/10/03 11:02:28 wiz Exp $ +# + +DISTNAME= ts-0.7.0 +CATEGORIES= sysutils +MASTER_SITES= http://vicerveza.homeunix.net/~viric/soft/ts/ + +MAINTAINER= jan.smydke@jh-inst.cas.cz +HOMEPAGE= http://vicerveza.homeunix.net/~viric/soft/ts/ +COMMENT= Simple handy batch system +LICENSE= gnu-gpl-v2 + +PKG_DESTDIR_SUPPORT= user-destdir + +USE_LANGUAGES= c +USE_TOOLS+= gmake + +.include "../../mk/bsd.pkg.mk" diff --git a/sysutils/ts/PLIST b/sysutils/ts/PLIST new file mode 100644 index 00000000000..f42cac96d30 --- /dev/null +++ b/sysutils/ts/PLIST @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2011/10/03 11:02:28 wiz Exp $ +bin/ts +man/man1/ts.1 diff --git a/sysutils/ts/distinfo b/sysutils/ts/distinfo new file mode 100644 index 00000000000..301e2078d76 --- /dev/null +++ b/sysutils/ts/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1.1.1 2011/10/03 11:02:28 wiz Exp $ + +SHA1 (ts-0.7.0.tar.gz) = aa904366caa6daab0287121459f7f29d05138024 +RMD160 (ts-0.7.0.tar.gz) = a409d51398d3d162013e0788762e00d419e2546f +Size (ts-0.7.0.tar.gz) = 50824 bytes +SHA1 (patch-aa) = 2b0a9d5cb09dc7ba7eb317d037f9085eef53c9c7 diff --git a/sysutils/ts/patches/patch-aa b/sysutils/ts/patches/patch-aa new file mode 100644 index 00000000000..f13af16a7db --- /dev/null +++ b/sysutils/ts/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.1.1.1 2011/10/03 11:02:28 wiz Exp $ + +Add DESTDIR support and fix MANDIR +--- Makefile.orig 2011-09-01 18:02:43.000000000 +0000 ++++ Makefile +@@ -1,3 +1,4 @@ ++DESTDIR?= + PREFIX?=/usr/local + GLIBCFLAGS=-D_XOPEN_SOURCE=500 -D__STRICT_ANSI__ + CFLAGS=-pedantic -ansi -Wall -g -O0 +@@ -54,7 +55,7 @@ clean: + rm -f *.o ts + + install: ts +- $(INSTALL) -d $(PREFIX)/bin +- $(INSTALL) ts $(PREFIX)/bin +- $(INSTALL) -d $(PREFIX)/share/man/man1 +- $(INSTALL) -m 644 ts.1 $(PREFIX)/share/man/man1 ++ $(INSTALL) -d $(DESTDIR)$(PREFIX)/bin ++ $(INSTALL) ts $(DESTDIR)$(PREFIX)/bin ++ $(INSTALL) -d $(DESTDIR)$(PREFIX)/$(PKGMANDIR)/man1 ++ $(INSTALL) -m 644 ts.1 $(DESTDIR)$(PREFIX)/$(PKGMANDIR)/man1 -- cgit v1.2.3