238c12c485
- fixed wrong ordering of network header includes - applied man page correction, diff received from mk
34 lines
805 B
Makefile
34 lines
805 B
Makefile
# $OpenBSD: Makefile,v 1.2 2006/01/05 05:34:34 pvalchev Exp $
|
|
|
|
COMMENT= "ssh through https proxy tunnel"
|
|
|
|
DISTNAME= gotthard-1.3
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.nazgul.ch/dev/
|
|
|
|
HOMEPAGE= http://www.nazgul.ch/dev.html
|
|
|
|
MAINTAINER= Marcus Glocker <marcus@nazgul.ch>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
post-extract:
|
|
@perl -pi -e 's,gotthard.conf,${SYSCONFDIR}/gotthard.conf,g' \
|
|
${WRKDIST}/gotthard.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/gotthard ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/gotthard.8 ${PREFIX}/man/man8
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/gotthard
|
|
${INSTALL_DATA} ${WRKSRC}/gotthard.conf \
|
|
${PREFIX}/share/examples/gotthard
|
|
|
|
.include <bsd.port.mk>
|