blob: 6805c88df770668d75876291c17c8362f17294a6 (
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
27
28
29
30
31
32
33
34
|
# New ports collection makefile for: scsh
# Version required: 0.5.1
# Date created: Jul, 15, 1997
# Whom: cracauer@cons.org "Martin Cracauer"
#
# $NetBSD: Makefile,v 1.3 1998/02/23 15:52:04 hubertf Exp $
# FreeBSD Id: Makefile,v 1.4 1997/07/15 15:00:30 cracauer Exp
#
DISTNAME= scsh-0.5.1
CATEGORIES= shells lang
MASTER_SITES= ftp://ftp-swiss.ai.mit.edu/pub/su/scsh/
MAINTAINER= cracauer@cons.org
GNU_CONFIGURE= yes
ALL_TARGET= enough
MAN1= scsh.1
MAKE_ENV+= INSTALL_PROGRAM='${INSTALL_PROGRAM}' \
INSTALL_SCRIPT='${INSTALL_SCRIPT}' \
INSTALL_DATA='${INSTALL_DATA}'
post-configure:
cd ${WRKSRC};sed -e '/LIBGEN/d' sysdep.h >xx ; mv xx sysdep.h
post-install:
@strip ${PREFIX}/bin/scsh
(cd ${WRKSRC} ; \
${INSTALL_DATA} README RELEASE NEWS COPYING ${PREFIX}/lib/scsh/doc)
${RM} -f ${PREFIX}/share/doc/scsh
ln -fs ${PREFIX}/lib/scsh/doc ${PREFIX}/share/doc/scsh
.include <bsd.port.mk>
|