pkgsrc/net/6tunnel/Makefile
ghen c534d92cbf Update to 0.11rc2 (with new homepage), latest available version since 2005.
0.11 (2005-08-18)

Changes by Wojtek Kaniewski <wojtekka@toxygen.net>:
- changed license to GPL version 2. There was no license information before
  which caused confusion. Code by Tomasz Lipski <lemur@irc.pl> and awayzzz
  <awayzzz@digibel.org> had to be removed, because their e-mail addresses
  were dead and googling for them gave no useful information. The missing
  features have been rewritten from scratch. If any offending code is still
  here, please let me know. I've done my best, but I haven't used any
  version control 5 years ago.
- changed e-mail address.

Changes by Ramunas Lukosevicius <lukoramu@parok.lt>
- fixed source mapping bug,
- SIGHUP reloads map file.

0.10 (2003-06-12)

Changes by Wojtek Kaniewski <wojtekka@irc.pl>:
- major code cleanup,
- select() before accept(), so 6tunnel won't hang on sys_socketcall.
- fixed losing data under heavy load, when write() didn't send all
  data. unsent data is stored in a buffer,
- autoconf,
- supports pid file (idea by misio <monster@qm.pl>).
2011-10-13 11:40:05 +00:00

31 lines
735 B
Makefile

# $NetBSD: Makefile,v 1.12 2011/10/13 11:40:05 ghen Exp $
#
DISTNAME= 6tunnel-0.11rc2
CATEGORIES= net
MASTER_SITES= http://toxygen.net/6tunnel/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://toxygen.net/6tunnel/
COMMENT= v4/v6 protocol translation
PKG_DESTDIR_SUPPORT= user-destdir
NOT_FOR_PLATFORM+= Interix-*-* # no IPv6 support
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "SunOS"
LDFLAGS+= -lsocket -lnsl
.endif
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
do-build:
${CC} ${CFLAGS} -o ${WRKSRC}/6tunnel ${WRKSRC}/6tunnel.c ${LDFLAGS}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/6tunnel ${DESTDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/6tunnel.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
.include "../../mk/bsd.pkg.mk"