mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
d5b52645c7
CC and CXX to MAKE_ENV.
30 lines
578 B
Makefile
30 lines
578 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: libecc
|
|
# Date created: Oct 29, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libecc
|
|
PORTVERSION= 0.3.0
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= C++ Elliptic Curve Library
|
|
|
|
USE_GCC= 3.3
|
|
GNU_CONFIGURE= yes
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 501103
|
|
# Work around bsd.port.mk bug: Does not currently set up MAKE_ENV for gcc 3.2 and 3.3
|
|
MAKE_ENV+= CC="${CC}" CXX="${CXX}"
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|