blob: 189c98f4899de248df8d2ab7cee19c07d4dfaf80 (
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
34
35
|
# ex:ts=8
# Ports collection makefile for: ised
# Date created: 20 Mar 2010
# Whom: Charlie Kester <corky1951@comcast.net>
#
# $FreeBSD$
#
PORTNAME= ised
PORTVERSION= 2.2.3
CATEGORIES= math
MASTER_SITES= SF/${PORTNAME}
MAINTAINER= corky1951@comcast.net
COMMENT= A tool for generating number sequences and arithmetic evaluation
USE_BZIP2= yes
GNU_CONFIGURE= yes
USE_GCC= 4.5+
LICENSE= GPLv3
.if !defined(NO_INSTALL_MANPAGES)
MAN1= ${PORTNAME}.1
.endif
PLIST_FILES= bin/${PORTNAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/bin
.if !defined(NO_INSTALL_MANPAGES)
${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 ${MAN1PREFIX}/man/man1
.endif
.include <bsd.port.mk>
|