e332ab40cd
spiped (pronounced "ess-pipe-dee") is a utility for creating symmetrically encrypted and authenticated pipes between socket addresses, so that one may connect to one address (e.g., a UNIX socket on localhost) and transparently have a connection established to another address (e.g., a UNIX socket on a different system). This is similar to 'ssh -L' functionality, but does not use SSH and requires a pre-shared symmetric key. spipe (pronounced "ess-pipe") is a utility which acts as an spiped protocol client (i.e., connects to an spiped daemon), taking input from the standard input and writing data read back to the standard output.
35 lines
1.0 KiB
Makefile
35 lines
1.0 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/11/19 22:14:52 sthen Exp $
|
|
|
|
COMMENT = utility for creating secure pipes between socket addresses
|
|
|
|
DISTNAME = spiped-1.2.2
|
|
CATEGORIES = security sysutils
|
|
|
|
MAINTAINER = James Turner <james@calminferno.net>
|
|
|
|
HOMEPAGE = http://www.tarsnap.com/spiped.html
|
|
MASTER_SITES = http://www.tarsnap.com/spiped/
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB = c crypto pthread
|
|
|
|
EXTRACT_SUFX = .tgz
|
|
NO_REGRESS = Yes
|
|
FAKE_FLAGS = BINDIR="${WRKINST}${PREFIX}/bin"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/spiped
|
|
${INSTALL_DATA} ${WRKSRC}/COPYRIGHT ${PREFIX}/share/doc/spiped/
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/spiped/
|
|
${INSTALL_DATA} ${WRKSRC}/spipe/README ${PREFIX}/share/doc/spiped/README-spipe
|
|
${INSTALL_DATA} ${WRKSRC}/spiped/README ${PREFIX}/share/doc/spiped/README-spiped
|
|
perl -pi -e 's,/etc/ssh/spiped.key,${SYSCONFDIR}/spiped/spiped.key,' \
|
|
${PREFIX}/share/doc/spiped/README
|
|
|
|
.include <bsd.port.mk>
|