pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/net/ppp-lzs remove ppp-lzs package, it is unmaintainab...
details: https://anonhg.NetBSD.org/pkgsrc/rev/ced738f1977c
branches: trunk
changeset: 556553:ced738f1977c
user: plunky <plunky%pkgsrc.org@localhost>
date: Sun Mar 22 18:55:54 2009 +0000
description:
remove ppp-lzs package, it is unmaintainable in its current form. I did
have some thoughts about it some time last year but not got around to it
and it has been marked broken for a long time.
diffstat:
net/ppp-lzs/DESCR | 9 ------
net/ppp-lzs/MESSAGE.NetBSD | 8 -----
net/ppp-lzs/Makefile | 64 ----------------------------------------------
net/ppp-lzs/PLIST | 6 ----
net/ppp-lzs/distinfo | 5 ---
5 files changed, 0 insertions(+), 92 deletions(-)
diffs (112 lines):
diff -r eb398e10ba86 -r ced738f1977c net/ppp-lzs/DESCR
--- a/net/ppp-lzs/DESCR Sun Mar 22 18:53:50 2009 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,9 +0,0 @@
-This is a NetBSD decompressor for PPP compatible with the Stac LZS
-scheme as described in rfc1974. The algorithm is apparently covered
-by patents held by Hifn in the USA and Europe though it was written
-independently with no help from Hifn or anybody associated with them,
-and with no reference to the patents. You might want to consider this
-'example' code only if that makes you feel better.
-
-This package patches the included pppd in NetBSD and thus, in order to
-compile this, you will need to have the NetBSD source sets installed.
diff -r eb398e10ba86 -r ced738f1977c net/ppp-lzs/MESSAGE.NetBSD
--- a/net/ppp-lzs/MESSAGE.NetBSD Sun Mar 22 18:53:50 2009 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,8 +0,0 @@
-===========================================================================
-$NetBSD: MESSAGE.NetBSD,v 1.1.1.1 2004/08/27 00:16:52 reed Exp $
-
-You will probably need to add a line to your /etc/lkm.conf file to
-load the kernel module at bootup time, like so:
-
-${PREFIX}/lkm/lzs.o - - - - BEFORENET
-===========================================================================
diff -r eb398e10ba86 -r ced738f1977c net/ppp-lzs/Makefile
--- a/net/ppp-lzs/Makefile Sun Mar 22 18:53:50 2009 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,64 +0,0 @@
-# $NetBSD: Makefile,v 1.15 2009/02/16 13:59:42 joerg Exp $
-
-DISTNAME= ppp-lzs-1.2
-CATEGORIES= net
-MASTER_SITES= http://homepages.rya-online.net/plunky/
-
-MAINTAINER= plunky%rya-online.net@localhost
-HOMEPAGE= http://homepages.rya-online.net/plunky/lzs.html
-COMMENT= PPP daemon and LKM with Stac LZS decompression
-
-PKG_DESTDIR_SUPPORT= user-destdir
-
-CONFLICTS+= ppp-* ppp-mppe-*
-ONLY_FOR_PLATFORM= NetBSD-*-*
-
-.include "../../mk/bsd.prefs.mk"
-
-MAKE_ENV+= NETBSDSRCDIR=${NETBSDSRCDIR:Q}
-MAKE_ENV+= S="${NETBSDSRCDIR}/sys"
-MESSAGE_SUBST+= PREFIX="${PREFIX}"
-
-USE_TOOLS+= patch
-
-BUILDLINK_PASSTHRU_DIRS= ${NETBSDSRCDIR}/lib/libpcap
-
-INSTALLATION_DIRS= lkm ${PKGMANDIR}/cat8 ${PKGMANDIR}/man8 sbin
-
-pre-extract:
-.if !exists(${NETBSDSRCDIR}/usr.sbin/pppd/Makefile)
- @${ECHO} "This package requires the NetBSD source sets to be installed in"
- @${ECHO} "order to compile, as it patches against the supplied pppd. Please"
- @${ECHO} "place them in ${NETBSDSRCDIR} or set the NETBSDSRCDIR variable"
- @${ECHO} "to their location."
- @${FALSE}
-.endif
-
-post-extract:
- @${CP} ${NETBSDSRCDIR}/sys/net/ppp-comp.h ${WRKSRC}/net
- @${CP} ${NETBSDSRCDIR}/usr.sbin/pppd/pppd/*.[ch8] ${WRKSRC}/pppd
- @${CP} ${NETBSDSRCDIR}/usr.sbin/pppd/pppd/Makefile ${WRKSRC}/pppd
-
-do-patch:
- @cd ${WRKSRC}; \
- v=`${SED} -n -e "/^#define.*VERSION.*\"\(.*\)\".*/s//\1/p" pppd/patchlevel.h`; \
- ${ECHO} -n "pppd $${v} sources found, "; \
- if [ -d $${v} ]; then \
- ${ECHO} "patching.."; \
- ${CAT} $${v}/patch.* | ${PATCH} --quiet; \
- else \
- ${ECHO} "Have no patches for this version, sorry!"; \
- ${FALSE}; \
- fi
-
-INSTALLATION_DIRS= lkm sbin ${PKGMANDIR}/cat8 ${PKGMANDIR}/man8
-
-do-install:
- ${INSTALL} ${COPY} ${_STRIPFLAG_INSTALL} -o ${BINOWN} -g ${BINGRP} -m 4555 \
- ${WRKSRC}/pppd/pppd ${DESTDIR}${PREFIX}/sbin/pppd
- ${INSTALL_MAN} ${WRKSRC}/pppd/pppd.cat8 ${DESTDIR}${PREFIX}/${PKGMANDIR}/cat8/pppd.0
- ${INSTALL_MAN} ${WRKSRC}/pppd/pppd.8 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8/pppd.8
- ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
- ${WRKSRC}/lkm/lzs.o ${DESTDIR}${PREFIX}/lkm/lzs.o
-
-.include "../../mk/bsd.pkg.mk"
diff -r eb398e10ba86 -r ced738f1977c net/ppp-lzs/PLIST
--- a/net/ppp-lzs/PLIST Sun Mar 22 18:53:50 2009 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-@comment $NetBSD: PLIST,v 1.2 2005/04/22 19:50:48 wiz Exp $
-lkm/lzs.o
-man/cat8/pppd.0
-man/man8/pppd.8
-sbin/pppd
-@dirrm lkm
diff -r eb398e10ba86 -r ced738f1977c net/ppp-lzs/distinfo
--- a/net/ppp-lzs/distinfo Sun Mar 22 18:53:50 2009 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-$NetBSD: distinfo,v 1.2 2005/02/24 12:14:01 agc Exp $
-
-SHA1 (ppp-lzs-1.2.tar.gz) = 2d9dfdc30e38c1499acde27adb3ccfd0d6ccb47e
-RMD160 (ppp-lzs-1.2.tar.gz) = c76bb397f5ed4327d428875dc1df92d69646629d
-Size (ppp-lzs-1.2.tar.gz) = 16506 bytes
Home |
Main Index |
Thread Index |
Old Index