openbsd-ports/security/p5-Digest-Skein/Makefile
benoit 6109cdfb7f - take maintainership on it
- remove USE_GROFF
- bump REVISION
2011-07-31 07:27:29 +00:00

35 lines
624 B
Makefile

# $OpenBSD: Makefile,v 1.5 2011/07/31 07:27:29 benoit Exp $
COMMENT = interface to the Skein digest algorithm
DISTNAME = Digest-Skein-0.05
CATEGORIES = security
REVISION = 0
HOMEPAGE = http://www.skein-hash.info/
MAINTAINER = Benoit Lecocq <benoit@openbsd.org>
# Perl
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
MODULES = cpan
BYTEORDER != sysctl -n hw.byteorder
.if ${BYTEORDER} == "1234"
BO= LITTLE
.else
BO= BIG
.endif
pre-configure:
@perl -pi -e 's,!!ENDIAN!!,IS_${BO}_ENDIAN,g' \
${WRKSRC}/Optimized_64bit/brg_endian.h
.include <bsd.port.mk>