diff options
author | cube <cube@pkgsrc.org> | 2005-01-02 02:51:40 +0000 |
---|---|---|
committer | cube <cube@pkgsrc.org> | 2005-01-02 02:51:40 +0000 |
commit | 3e861581566373837c074b8c9af2ffddc6215e9c (patch) | |
tree | b76aa88f42b440cfb17fc25332b40488fe8a010c /net/pppd/Makefile | |
parent | fe826f2c9ae5add6e5e1e095d5413f59de03de5a (diff) | |
download | pkgsrc-3e861581566373837c074b8c9af2ffddc6215e9c.tar.gz |
Initial import of pppd, version 2.4.3, into the NetBSD Package Collection.
The PPP Daemon is the userland part of the Point-to-Point Protocol. It works
in combination with a dedicated kernel network interface usually named ppp.
PPP is a very extensible protocol and pppd supports a large number of options,
including compression (through various algorithms), cryptography (Microsoft's
MPPE) and authentication (PAP, CHAP, Microsoft CHAP), provided the kernel has
the relevant back-ends in some cases.
Diffstat (limited to 'net/pppd/Makefile')
-rw-r--r-- | net/pppd/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/net/pppd/Makefile b/net/pppd/Makefile new file mode 100644 index 00000000000..fcd332aef3f --- /dev/null +++ b/net/pppd/Makefile @@ -0,0 +1,26 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/01/02 02:51:40 cube Exp $ + +DISTNAME= ppp-${PPPD_VERSION} +PKGNAME= ${DISTNAME:S/ppp/&d/} +CATEGORIES= net +MASTER_SITES= ftp://ftp.samba.org/pub/ppp/ + +MAINTAINER= cube@NetBSD.org +HOMEPAGE= http://ppp.samba.org/ +COMMENT= PPP Daemon + +USE_BUILDLINK3= yes +USE_PKGLOCALEDIR= yes +HAS_CONFIGURE= yes +USE_GNU_TOOLS+= make +USE_PKGINSTALL= yes + +ONLY_FOR_PLATFORM+= NetBSD-*-* Linux-*-* + +PKG_SYSCONFSUBDIR= ppp +CONFIGURE_ENV+= PREFIX=${PREFIX} PKGSYSCONFDIR=${PKG_SYSCONFDIR} + +PPPD_VERSION= 2.4.3 +PLIST_SUBST+= PPPD_VERSION=${PPPD_VERSION} + +.include "../../mk/bsd.pkg.mk" |