mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
f18538b989
Changes: https://github.com/libevent/libevent/releases/tag/release-2.1.11-stable ABI: https://abi-laboratory.pro/tracker/timeline/libevent/ PR: 239599 Reported by: GitHub (watch releases) Approved by: zeising (maintainer) MFH: 2019Q3 (maybe security, partially restores 2.1.8 ABI) Differential Revision: https://reviews.freebsd.org/D21133
29 lines
700 B
Makefile
29 lines
700 B
Makefile
# Created by: William Ward <William.Ward@ericsson.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nylon
|
|
PORTVERSION= 1.21
|
|
PORTREVISION= 10
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://monkey.org/~marius/nylon/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Unix SOCKS 4 and 5 proxy server
|
|
|
|
LIB_DEPENDS= libevent.so:devel/libevent
|
|
|
|
USE_RC_SUBR= nylon
|
|
|
|
USES= pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
# Necessary for $PREFIX to work:
|
|
CONFIGURE_ARGS= --with-libevent=yes
|
|
CONFIGURE_ENV= EVENTLIB="`pkgconf --libs libevent`" EVENTINC="`pkgconf --cflags libevent`"
|
|
|
|
PLIST_FILES= bin/nylon etc/nylon.conf.sample man/man1/nylon.1.gz
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${FILESDIR}/nylon.conf ${STAGEDIR}${PREFIX}/etc/nylon.conf.sample
|
|
|
|
.include <bsd.port.mk>
|