GCC 4.6.4 to GCC 4.7.3. This entails updating the lang/gcc port as well as changing the default in Mk/bsd.default-versions.mk. Part II, Bump PORTREVISIONs. PR: 182136 Supported by: Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports) Tested by: bdrewery (two -exp runs)
29 lines
585 B
Makefile
29 lines
585 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= SHA
|
|
PORTVERSION= 1.6.1
|
|
PORTREVISION= 5
|
|
CATEGORIES= security haskell
|
|
|
|
MAINTAINER= haskell@FreeBSD.org
|
|
COMMENT= Implementations of the SHA suite of message digest functions
|
|
|
|
LICENSE= BSD
|
|
|
|
OPTIONS_DEFINE= EXE
|
|
|
|
EXE_DESC= Build a SHA2-384 executable similar to 'md5sum'
|
|
|
|
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.options.mk"
|
|
|
|
CONFIGURE_ARGS+= --flags="-Test"
|
|
|
|
.if ${PORT_OPTIONS:MEXE}
|
|
CONFIGURE_ARGS+= --flags="exe"
|
|
EXECUTABLE+= sha1 sha384
|
|
.else
|
|
CONFIGURE_ARGS+= --flags="-exe"
|
|
.endif
|
|
|
|
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
|
|
.include <bsd.port.mk>
|