[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/08: PRELIMINARY: gnu: Add ppp.
From: |
Mark H. Weaver |
Subject: |
01/08: PRELIMINARY: gnu: Add ppp. |
Date: |
Wed, 19 Aug 2015 03:53:35 +0000 |
mhw pushed a commit to branch master
in repository guix.
commit ba139bd75bd783d2474e5f9ecc0dd6d3aac6a9c3
Author: Mark H Weaver <address@hidden>
Date: Mon Jul 27 14:55:26 2015 -0400
PRELIMINARY: gnu: Add ppp.
TODO: Fix 'license' field.
* gnu/packages/networking.scm (ppp): New variable.
---
gnu/packages/networking.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 files changed, 38 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index dc139e2..ac96b16 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -23,6 +23,7 @@
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system gnu)
+ #:use-module (gnu packages admin)
#:use-module (gnu packages tls))
(define-public miredo
@@ -146,3 +147,40 @@ receiving NDP messages.")
auto-negotiation and checksum offload on many network devices, especially
Ethernet devices.")
(license license:gpl2)))
+
+(define-public ppp
+ (package
+ (name "ppp")
+ (version "2.4.7")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://download.samba.org/pub/" name "/"
+ name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0c7vrjxl52pdwi4ckrvfjr08b31lfpgwf3pp0cqy76a77vfs7q02"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libpcap" ,libpcap)))
+ (arguments
+ `(#:tests? #f ; no test suite
+ #:make-flags '("CC=gcc")
+ #:phases (modify-phases %standard-phases
+ (add-after
+ 'unpack 'patch-pppd-makefile
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute* "pppd/Makefile.linux"
+ (("/usr/include/crypt.h")
+ (string-append (assoc-ref inputs "libc")
+ "/include/crypt.h")))
+ #t)))))
+ (home-page "https://ppp.samba.org/")
+ (synopsis "Point-to-Point Protocol (PPP)")
+ (description
+ "The Point-to-Point Protocol provides a standard way to transmit
+datagrams over a serial link, as well as a standard way for the machines at
+either end of the link to negotiate various optional characteristics of the
+link.")
+ ;; XXX TODO Document all of the licenses.
+ (license (license:non-copyleft
+
"http://metadata.ftp-master.debian.org/changelogs//main/p/ppp/ppp_2.4.6-3.1_copyright"))))
- branch master updated (e41e013 -> 0f402e4), Mark H. Weaver, 2015/08/18
- 02/08: PRELIMINARY: dbus-service: Include system-services directories., Mark H. Weaver, 2015/08/18
- 01/08: PRELIMINARY: gnu: Add ppp.,
Mark H. Weaver <=
- 04/08: PRELIMINARY: Add dbus-fixed., Mark H. Weaver, 2015/08/18
- 03/08: PRELIMINARY: gnu: polkit: Work on making it functional in practice., Mark H. Weaver, 2015/08/18
- 05/08: PRELIMINARY: Add three programs to %setuid-programs., Mark H. Weaver, 2015/08/18
- 06/08: PRELIMINARY: Modify dbus-configuration to find setuid helper., Mark H. Weaver, 2015/08/18
- 07/08: PRELIMINARY: gnu: wpa-supplicant: Install dbus service files., Mark H. Weaver, 2015/08/18
- 08/08: PRELIMINARY: gnu: Add network-manager., Mark H. Weaver, 2015/08/18