diff options
author | obrien <obrien@FreeBSD.org> | 1997-06-06 01:03:25 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1997-06-06 01:03:25 +0800 |
commit | 81269cb0c3521b962bd832e97d40c03328635d70 (patch) | |
tree | 0ce59c94f698d10c5fe22c0457965d9a4598582d /sysutils/skill/Makefile | |
parent | 98944e45ab640fafc6a77759aa2f53208326cc2d (diff) | |
download | freebsd-ports-gnome-81269cb0c3521b962bd832e97d40c03328635d70.tar.gz freebsd-ports-gnome-81269cb0c3521b962bd832e97d40c03328635d70.tar.zst freebsd-ports-gnome-81269cb0c3521b962bd832e97d40c03328635d70.zip |
`skill' is a program which sends signals to processes given
any combination of user names, ttys, commands, and pids. `snice' is
a program which changes the priority of processes (given the same).
PR: ports/3783
Submitted by: Joao Carlos Mendes Luis <jonny@mailhost.coppe.ufrj.br>
(w/minor hacks by me)
Diffstat (limited to 'sysutils/skill/Makefile')
-rw-r--r-- | sysutils/skill/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/sysutils/skill/Makefile b/sysutils/skill/Makefile new file mode 100644 index 000000000000..5d467a8f8625 --- /dev/null +++ b/sysutils/skill/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: skill +# Version required: 3.7 +# Date created: 04 Jun 1997 +# Whom: Joao Carlos Mendes Luis <jonny@mailhost.coppe.ufrj.br> +# +# $Id$ +# + +DISTNAME= skill-3.7@P3 +PKGNAME= skill-3.7.4 +CATEGORIES= sysutils +MASTER_SITES= ftp://jaguar.cs.utah.edu/pub/skill/ +EXTRACT_SUFX= _tar.Z + +MAINTAINER= jonny@coppe.ufrj.br + +HAS_CONFIGURE= yes +CONFIGURE_SCRIPT= Config +WRKSRC= ${WRKDIR}/${PKGNAME} + +MAN1= skill.1 + +# Bugs: skill.1 and snice.1 are hard links. When compressed they +# are changed to independent files. I'd like to change this... + +pre-configure: + @chmod a+x ${WRKSRC}/Config + +post-install: + @ln -sf ${PREFIX}/man/man1/skill.1.gz ${PREFIX}/man/man1/snice.1.gz + +.include <bsd.port.mk> |