blob: 89d3204603ed1381d9050d8fdf47f56acbf8abbe (
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
|
# New ports collection makefile for: libgmp
# Date created: 28 August 2001
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= libgmp
PORTVERSION= 2001.08.07
CATEGORIES= math
MASTER_SITES= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= sobomax
MAINTAINER= ports@FreeBSD.org
PORTCOMMENT= A library for arbitrary precision arithmetic
USE_BZIP2= yes
INSTALLS_SHLIB= yes
MAKE_FLAGS= INCDIR=${PREFIX}/include \
LIBDIR=${PREFIX}/lib \
INFODIR=${PREFIX}/info
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500000
IGNORE= "is in the base system"
.endif
.include <bsd.port.post.mk>
|