06df180a9e
Homepage link is permanent redirected to its HTTPS counterpart Issue reported by repology : https://repology.org/repository/freebsd/problems Approved by: portmgr (blanket) PR: 274888
52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
PORTNAME= rhash
|
|
PORTVERSION= 1.4.4
|
|
CATEGORIES= security
|
|
MASTER_SITES= SF
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
|
|
|
PATCH_SITES= https://github.com/rhash/RHash/commit/
|
|
PATCHFILES+= c804982d1b24c6533118b3068d2cfdca685076f3.patch:-p1
|
|
PATCHFILES+= 9ef90b958b7ae50aeeb5c269468034d73d6e2efe.patch:-p1
|
|
PATCHFILES+= b8c91ea6551e99e10352386cd46ea26973bb4a4d.patch:-p1
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Utility and library for computing and checking of file hashes
|
|
WWW= https://rhash.sourceforge.net/
|
|
|
|
LICENSE= BSD0CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix="${PREFIX}" --mandir="${PREFIX}/man" \
|
|
--pkgconfigdir="${PREFIX}/libdata/pkgconfig" \
|
|
--enable-lib-static --enable-openssl-runtime \
|
|
--extra-cflags="${CFLAGS}" --extra-ldflags="${LDFLAGS}"
|
|
INSTALL_TARGET= install install-lib-so-link install-pkg-config
|
|
|
|
USES= cpe
|
|
CPE_VENDOR= ${PORTNAME}_project
|
|
USE_LDCONFIG= yes
|
|
|
|
WRKSRC= ${WRKDIR}/RHash-${PORTVERSION}
|
|
|
|
PORTDOCS= ChangeLog README.md
|
|
|
|
OPTIONS_DEFINE= DOCS NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_USES= gettext localbase:ldflags
|
|
NLS_CONFIGURE_ON= --enable-gettext
|
|
NLS_INSTALL_TARGET= install-gmo
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/BYTE_ORDER/s,__,_,g' \
|
|
${WRKSRC}/librhash/byte_order.h
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
do-test:
|
|
cd ${WRKSRC}/tests && ${SH} test_rhash.sh --full --shared
|
|
|
|
.include <bsd.port.mk>
|