blob: c4425cc18cde927e9b0c9bf1b0ade594227ca4ac (
plain) (
blame)
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
|
# New ports collection makefile for: osh
# Date created: 29 December 2000
# Whom: George Reid <greid@ukug.uk.freebsd.org>
#
# $FreeBSD$
#
PORTNAME= osh
PORTVERSION= 060124
CATEGORIES= shells
MASTER_SITES= http://jneitzel.sdf1.org/osh/src/
MAINTAINER= miwi@FreeBSD.org
COMMENT= An implementation of the UNIX 6th Edition shell
MAN1= fd2.1 goto.1 if.1 osh.1
post-install:
@${ECHO_MSG} "updating ${DESTDIR}/etc/shells"
@${CP} ${DESTDIR}/etc/shells ${DESTDIR}/etc/shells.bak
@(${GREP} -v ${PREFIX}/bin/osh ${DESTDIR}/etc/shells.bak; \
${ECHO_CMD} ${PREFIX}/bin/osh) > ${DESTDIR}/etc/shells
@${RM} ${DESTDIR}/etc/shells.bak
.include <bsd.port.mk>
|