5393242c73
Performing substitutions during post-patch breaks tools such as mkpatches, making it very difficult to regenerate correct patches after making changes, and often leading to substituted string replacements being committed.
33 lines
940 B
Makefile
33 lines
940 B
Makefile
# $NetBSD: Makefile,v 1.8 2018/07/04 13:40:30 jperkin Exp $
|
|
#
|
|
|
|
DISTNAME= proxytunnel-1.9.0
|
|
PKGREVISION= 4
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=proxytunnel/}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://proxytunnel.sourceforge.net/
|
|
COMMENT= Connect stdin/stdout to a remote host through a standard HTTPS proxy
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
USE_TOOLS+= gmake
|
|
BUILD_TARGET= proxytunnel
|
|
INSTALLATION_DIRS+= ${PKGMANDIR}/man1 bin
|
|
|
|
SUBST_CLASSES+= fix-paths
|
|
SUBST_STAGE.fix-paths= pre-configure
|
|
SUBST_MESSAGE.fix-paths= Fixing absolute paths.
|
|
SUBST_FILES.fix-paths= proxytunnel.1
|
|
SUBST_SED.fix-paths= -e 's,/usr,${PREFIX},g'
|
|
|
|
LDFLAGS.SunOS+= -lsocket -lnsl
|
|
|
|
do-install:
|
|
${INSTALL} ${WRKSRC}/proxytunnel ${DESTDIR}${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/proxytunnel.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/
|
|
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|