blob: cde4b616a136719e5856ace90cebaeed4aeaf0ed (
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
26
27
28
29
30
31
32
33
|
# New ports collection makefile for: empty
# Date created: 17 September 2005
# Whom: Mikhail Zakharov <zmey20000@yahoo.com>
#
# $FreeBSD$
PORTNAME= empty
PORTVERSION= 0.6.17b
CATEGORIES= net
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
EXTRACT_SUFX= .tgz
MAINTAINER= zmey20000@yahoo.com
COMMENT= Expect-like tool for pure shell
MAN1= empty.1
DOCS= CHANGELOG COPYRIGHT README README.CYGWIN
EXAMPLES= README em_ssh.sh em_ssh_2.sh em_sh.sh \
em_telnet.sh em_telnet_2.sh emsu.sh runtests.sh
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/empty ${PREFIX}/bin/
@${INSTALL_MAN} ${MAN1:S,^,${WRKSRC}/,} ${MAN1PREFIX}/man/man1/
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/
.endif
.if !defined(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
@${INSTALL_DATA} ${EXAMPLES:S,^,${WRKSRC}/examples/,} ${EXAMPLESDIR}/
.endif
.include <bsd.port.mk>
|