Includes the patches we have for CVE-2012-3505, and adds support for listening on multiple addresses (0.0.0.0 and :: by default). maintainer timeout
30 lines
603 B
Makefile
30 lines
603 B
Makefile
# $OpenBSD: Makefile,v 1.28 2017/02/18 17:21:51 jca Exp $
|
|
|
|
COMMENT = lightweight HTTP/SSL proxy
|
|
|
|
V = 1.8.4
|
|
DISTNAME = tinyproxy-$V
|
|
CATEGORIES = www net
|
|
|
|
HOMEPAGE = https://www.banu.com/tinyproxy/
|
|
MAINTAINER = frantisek holop <minusf@obiit.org>
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
BUILD_DEPENDS = textproc/asciidoc>=8.6.8
|
|
|
|
SEPARATE_BUILD = Yes
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
WANTLIB = c
|
|
|
|
MASTER_SITES = https://github.com/tinyproxy/tinyproxy/releases/download/$V/
|
|
|
|
SYSCONFDIR = ${BASESYSCONFDIR}/tinyproxy
|
|
|
|
post-install:
|
|
mv ${WRKINST}${SYSCONFDIR} ${PREFIX}/share/examples
|
|
|
|
.include <bsd.port.mk>
|