mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
f191a0244b
- Bump revisions for all dependent ports PR: 223147 [1] Submitted by: Greg V [1]
33 lines
758 B
Makefile
33 lines
758 B
Makefile
# Created by: Kubilay Kocak <koobs@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= reop
|
|
PORTVERSION= 2.1.0
|
|
PORTREVISION= 4
|
|
CATEGORIES= security
|
|
|
|
MAINTAINER= koobs@FreeBSD.org
|
|
COMMENT= Reasonable Expectation Of Privacy
|
|
|
|
LIB_DEPENDS= libsodium.so:security/libsodium
|
|
|
|
USES= gmake
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= tedu
|
|
|
|
MAKEFILE= GNUmakefile
|
|
MAKE_ARGS+= CPPFLAGS="-D_NSIG=NSIG" \
|
|
CFLAGS+="-I${LOCALBASE}/include -Iother -Wno-pointer-sign" \
|
|
PREFIX="${STAGEDIR}${PREFIX}"
|
|
|
|
PLIST_FILES= bin/reop \
|
|
man/man1/reop.1.gz
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${MKDIR} ${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|