[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/36: gnu: Add ksmtp.
From: |
guix-commits |
Subject: |
15/36: gnu: Add ksmtp. |
Date: |
Mon, 3 Feb 2020 08:46:01 -0500 (EST) |
htgoebel pushed a commit to branch staging
in repository guix.
commit 29157edcd669e6cb500deee9e41a655a0da17618
Author: Hartmut Goebel <address@hidden>
AuthorDate: Sun Dec 15 00:10:44 2019 +0100
gnu: Add ksmtp.
* gnu/packages/kde-pim.scm (ksmtp): New variable.
---
gnu/packages/kde-pim.scm | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/kde-pim.scm b/gnu/packages/kde-pim.scm
index ce89dba..2ced957 100644
--- a/gnu/packages/kde-pim.scm
+++ b/gnu/packages/kde-pim.scm
@@ -561,6 +561,46 @@ easier to do so.")
(license ;; GPL for programs, LGPL for libraries, FDL for documentation
(list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+(define-public ksmtp
+ (package
+ (name "ksmtp")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/ksmtp-" version ".tar.xz"))
+ (sha256
+ (base32 "1pd8mma3xbq83jkn76gqinn6xh9imaji0jrg3qzysf5rvjl8kcqn"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)))
+ (inputs
+ `(("cyrus-sasl" ,cyrus-sasl)
+ ("kcodecs" ,kcodecs)
+ ("kconfig" ,kconfig)
+ ("kcoreaddons" ,kcoreaddons)
+ ("ki18n" ,ki18n)
+ ("kio" ,kio)
+ ("qtbase" ,qtbase)))
+ (arguments
+ `(#:tests? #f ;; TODO: does not find sasl mechs
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack
'Use-KDE_INSTALL_TARGETS_DEFAULT_ARGS-when-installing
+ (lambda _
+ (substitute* "src/CMakeLists.txt"
+ (("^(install\\(.* )\\$\\{KF5_INSTALL_TARGETS_DEFAULT_ARGS\\}\\)"
+ _ prefix)
+ (string-append prefix "${KDE_INSTALL_TARGETS_DEFAULT_ARGS})")))
+ #t)))))
+ (home-page "https://cgit.kde.org/ksmtp.git")
+ (synopsis "Library for sending email through an SMTP server")
+ (description "This library provides an API for handling SMTP
+services. SMTP (Simple Mail Transfer Protocol) is the most prevalent Internet
+standard protocols for e-mail transmission.")
+ (license license:lgpl2.0+)))
+
(define-public ktnef
(package
(name "ktnef")
- branch staging updated (0895002 -> cf25665), guix-commits, 2020/02/03
- 02/36: gnu: Add kmime., guix-commits, 2020/02/03
- 06/36: gnu: Add kidentitymanagement., guix-commits, 2020/02/03
- 01/36: gnu: Add akonadi., guix-commits, 2020/02/03
- 09/36: gnu: Add ktnef., guix-commits, 2020/02/03
- 12/36: gnu: Add akonadi-notes., guix-commits, 2020/02/03
- 05/36: gnu: Add kpimtextedit., guix-commits, 2020/02/03
- 04/36: gnu: Add kcalutils., guix-commits, 2020/02/03
- 11/36: gnu: Add akonadi-mime., guix-commits, 2020/02/03
- 15/36: gnu: Add ksmtp.,
guix-commits <=
- 16/36: gnu: Add kontactinterface., guix-commits, 2020/02/03
- 08/36: gnu: Add kldap., guix-commits, 2020/02/03
- 13/36: gnu: Add akonadi-search., guix-commits, 2020/02/03
- 14/36: gnu: Add akonadi-contacts., guix-commits, 2020/02/03
- 19/36: gnu: Add akonadi-calendar., guix-commits, 2020/02/03
- 07/36: gnu: Add kimap., guix-commits, 2020/02/03
- 03/36: gnu: Add kmbox., guix-commits, 2020/02/03
- 10/36: gnu: Add kalarmcal., guix-commits, 2020/02/03
- 17/36: gnu: Add libkgapi., guix-commits, 2020/02/03
- 22/36: gnu: Add kgpg., guix-commits, 2020/02/03