blob: 7e46940502bc5009bae5304d066f82722462b189 (
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
|
# New ports collection makefile for: hello
# Date created: Fri Jul 23, 1999
# Whom: shipley@dis.org
#
# $FreeBSD$
#
PORTNAME= hello
PORTVERSION= 1.3.1
CATEGORIES= misc
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= hello
DISTNAME= hello-1.3
MAINTAINER= shipley@dis.org
COMMENT= A utility for saying hello to the world and read email
WRKSRC= ${WRKDIR}/hello-1.3
GNU_CONFIGURE= YES
post-install:
@install-info --dir-file=${PREFIX}/info/dir \
--entry="* Hello: (hello). Hello Reference Manual." \
${PREFIX}/info/hello.info
.include <bsd.port.mk>
|