blob: 1816361cce4f248b3f815ed672075f57fea2ed9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# New ports collection makefile for: osh
# Date created: 29 December 2000
# Whom: George Reid <greid@ukug.uk.freebsd.org>
#
# $FreeBSD$
#
PORTNAME= osh
PORTVERSION= 001127
CATEGORIES= shells
MASTER_SITES= http://omnibus.ruf.uni-freiburg.de/~gritter/archive/
MAINTAINER= greid@ukug.uk.freebsd.org
MAKEFILE= makefile
MAN1= osh.1
post-install:
@${ECHO} "updating /etc/shells"
@${CP} /etc/shells /etc/shells.bak
@(${GREP} -v ${PREFIX}/bin/osh /etc/shells.bak; \
${ECHO} ${PREFIX}/bin/osh) > /etc/shells
@${RM} /etc/shells.bak
.include <bsd.port.mk>
|