1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00
freebsd-ports/math/gnubc/Makefile
Gabor Kovesdan fe3aaa23c7 - Compile with libedit. No OPTIONS, just do it unconditionally given that it
is part of the base system.
- Bump PORTREVISION

Requested by:	Lucius Windschuh <lwindschuh@googlemail.com>
2010-02-04 13:20:28 +00:00

41 lines
719 B
Makefile

# New ports collection makefile for: bc
# Date created: 21 Januar 2010
# Whom: Gabor Kovesdan <gabor@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= bc
PORTVERSION= 1.06
PORTREVISION= 1
CATEGORIES= math
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= ${PORTNAME}
PKGNAMEPREFIX= gnu
MAINTAINER= gabor@FreeBSD.org
COMMENT= The GNU bc/dc calculator
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-libedit
MAN1= bc.1 \
dc.1
INFO= bc \
dc
PLIST_FILES= bin/bc \
bin/dc
PORTEXAMPLES= ckbook.b \
pi.b \
primes.b \
twins.b
post-install:
.if !defined(NOPORTEXAMPLES)
${MKDIR} ${EXAMPLESDIR}
.for f in ${PORTEXAMPLES}
${INSTALL_DATA} ${WRKSRC}/Examples/${f} ${EXAMPLESDIR}
.endfor
.endif
.include <bsd.port.mk>