gnu: telephony: Add 'license:' prefix.

* gnu/packages/telephony.scm (commoncpp) [license]: Add prefix.
(ucommon) [license]: Add prefix.
(ccrtp) [license]: Add prefix.
(osip) [license]: Add prefix.
(exosip) [license]: Add prefix.
(sipwitch) [license]: Add prefix.
(libsrtp) [license]: Add prefix.
(libiax2) [license]: Add prefix.
(seren) [license]: Add prefix.
(pjproject-sfl) [license]: Add prefix.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Lukas Gradl 2016-08-28 12:40:21 -05:00 committed by Ludovic Courtès
parent 9a4c032cc4
commit 974aaf71e5
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -31,7 +31,7 @@ (define-module (gnu packages telephony)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages tls)
#:use-module (gnu packages xiph)
#:use-module (guix licenses)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system gnu))
@ -61,7 +61,7 @@ (define-public commoncpp
communications via sockets, and various methods for data handling, such as
serialization and XML parsing. It includes the uCommon C++ library, a smaller
reimplementation.")
(license gpl2+) ; plus runtime exception
(license license:gpl2+) ; plus runtime exception
(home-page "http://www.gnu.org/software/commoncpp")))
(define-public ucommon
@ -81,7 +81,7 @@ (define-public ucommon
to facilitate using C++ design patterns even for very deeply embedded
applications, such as for systems using uclibc along with posix threading
support.")
(license gpl3+)
(license license:gpl3+)
(home-page "http://www.gnu.org/software/commoncpp")
(properties '((ftp-directory . "/gnu/commoncpp")))))
@ -105,7 +105,7 @@ (define-public ccrtp
personal client applications. It is flexible in its design, allowing it to
function as a framework for the framework, rather than just being a
packet-manipulation library.")
(license gpl2+) ; plus runtime exception
(license license:gpl2+) ; plus runtime exception
(home-page "http://www.gnu.org/software/ccrtp")))
@ -124,7 +124,7 @@ (define-public osip
(description "GNU oSIP is an implementation of the SIP protocol. It is
used to provide multimedia and telecom software developers with an interface
to initiate and control SIP sessions.")
(license lgpl2.1+)
(license license:lgpl2.1+)
(home-page "http://www.gnu.org/software/osip")))
@ -147,7 +147,7 @@ (define-public exosip
be used by VoIP telephony applications (endpoints or conference server) but
might be also useful for any application that wish to establish sessions like
multiplayer games.")
(license gpl2+)
(license license:gpl2+)
;; (plus OpenSSL linking exception)
;; http://git.savannah.gnu.org/cgit/exosip.git/plain/LICENSE.OpenSSL
(home-page "http://savannah.nongnu.org/projects/exosip")))
@ -192,7 +192,7 @@ (define-public sipwitch
there is no central point for media intercept or capture and thus it can be
used to construct a secure telephone system that operates over the public
internet.")
(license gpl3+)
(license license:gpl3+)
(home-page "http://www.gnu.org/software/sipwitch")))
(define-public libsrtp
@ -216,7 +216,7 @@ (define-public libsrtp
Real-time Transport Protocol (SRTP), the Universal Security Transform (UST),
and a supporting cryptographic kernel.")
(home-page "https://github.com/cisco/libsrtp")
(license bsd-3)))
(license license:bsd-3)))
(define-public libiax2
(let ((commit "0e5980f1d78ce462e2d1ed6bc39ff35c8341f201"))
@ -255,7 +255,9 @@ (define-public libiax2
;; 'src/options.c', 'src/options.h', 'src/ring10.h', 'src/winiphone.c' are
;; covered under the 'GPL'.
;; The package as a whole is distributed under the LGPL 2.0.
(license (list lgpl2.0 public-domain gpl2+)))))
(license (list license:lgpl2.0
license:public-domain
license:gpl2+)))))
(define-public seren
(package
@ -285,4 +287,4 @@ (define-public seren
lists. All you need to join an existing conference is the host name or IP
address of one of the participants.")
(home-page "http://holdenc.altervista.org/seren/")
(license gpl3+)))
(license license:gpl3+)))