mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
cecf7f0450
- Pet portlint PR: 243219 Submitted by: timp87@gmail.com
32 lines
722 B
Makefile
32 lines
722 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
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
LIB_DEPENDS= libevent.so:devel/libevent
|
|
|
|
USES= pkgconfig
|
|
|
|
USE_RC_SUBR= nylon
|
|
|
|
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>
|