mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
34 lines
709 B
Makefile
34 lines
709 B
Makefile
# Created by: jmz
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= calc
|
|
PORTVERSION= 2.12.4.13
|
|
CATEGORIES= math
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= johans@FreeBSD.org
|
|
COMMENT= Arbitrary precision calculator
|
|
|
|
USES= gmake
|
|
USE_BZIP2= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
NO_STAGE= yes
|
|
|
|
MAN1= calc.1
|
|
|
|
CALCPAGER?= more
|
|
MAKE_ENV+= CALCPAGER="${CALCPAGER}" CAT="${CAT}" CHMOD="${CHMOD}" \
|
|
CP="${CP}" GMAKE="${GMAKE}" LN="${LN}" MKDIR="${MKDIR}" \
|
|
MV="${MV}" RM="${RM}" SED="${SED}" TOUCH="${TOUCH}" \
|
|
TRUE="${TRUE}"
|
|
|
|
PLIST_SUB+= VERSION=${PORTVERSION} VER1=${PORTVERSION:R} \
|
|
VER2=${PORTVERSION:R:R} VER3=${PORTVERSION:R:R:R}
|
|
|
|
regression-test: build
|
|
( cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} check )
|
|
|
|
.include <bsd.port.mk>
|