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

2
sysutils/ts/DESCR Normal file
View File

@@ -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.

16
sysutils/ts/Makefile Normal file
View File

@@ -0,0 +1,16 @@
# $NetBSD: Makefile,v 1.2 2012/10/23 19:51:27 asau 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
USE_LANGUAGES= c
USE_TOOLS+= gmake
.include "../../mk/bsd.pkg.mk"

3
sysutils/ts/PLIST Normal file
View File

@@ -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

6
sysutils/ts/distinfo Normal file
View File

@@ -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

View File

@@ -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