GNU bug report logs -
#50805
[PATCH] gnu: Add svkbd.
Previous Next
Reported by: Antero Mejr <antero <at> mailbox.org>
Date: Sat, 25 Sep 2021 18:54:02 UTC
Severity: normal
Tags: patch
Done: 宋文武 <iyzsong <at> envs.net>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Fri, 05 Aug 2022 13:31:22 +0800
with message-id <87wnbnxnmd.fsf_-_ <at> envs.net>
and subject line Re: bug#50805: [PATCH] gnu: Add svkbd.
has caused the debbugs.gnu.org bug report #50805,
regarding [PATCH] gnu: Add svkbd.
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
50805: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=50805
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
* gnu/packages/suckless.scm (svkbd): New variable.
---
gnu/packages/suckless.scm | 45 +++++++++++++++++++++++++++++++++++++++
1 file changed, 45 insertions(+)
diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm
index b24eced379..dc313c10e3 100644
--- a/gnu/packages/suckless.scm
+++ b/gnu/packages/suckless.scm
@@ -901,3 +901,48 @@ chat output in the background.")
Single daemon and configuration file. Log to stdout or syslog. No mail
support.")
(license license:expat)))
+
+(define-public svkbd
+ (package
+ (name "svkbd")
+ (version "0.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://dl.suckless.org/tools/svkbd-"
+ version ".tar.gz"))
+ (sha256
+ (base32 "0pydmf7frbn8b3zr2is212npbafkyrbs8qxg2ivwjvqwzvkmdm4g"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("locales" ,glibc-utf8-locales)))
+ (inputs
+ `(("freetype" ,freetype)
+ ("libx11" ,libx11)
+ ("libxtst" ,libxtst)
+ ("libxft" ,libxft)
+ ("libxinerama" ,libxinerama)))
+ (arguments
+ `(#:tests? #f
+ #:make-flags
+ (list (string-append "CC=" ,(cc-for-target))
+ (string-append "PREFIX=" %output))
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'patch
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (substitute* "config.mk"
+ (("/usr/local")
+ (assoc-ref outputs "out"))
+ (("/usr/X11R6")
+ (assoc-ref inputs "libx11"))
+ (("/usr/include/freetype2")
+ (string-append (assoc-ref inputs "freetype")
+ "/include/freetype2")))))
+ (delete 'configure)))) ; no configure script
+ (home-page "https://tools.suckless.org/x/svkbd")
+ (synopsis "Virtual on-screen keyboard")
+ (description "svkbd is a simple virtual keyboard, intended to be used in
+environments, where no keyboard is available.")
+ (license license:expat)))
--
2.30.2
[Message part 3 (message/rfc822, inline)]
Antero Mejr <antero <at> mailbox.org> writes:
> Updated to use the new gexps, then re-tested.
>
> * gnu/packages/suckless.scm (svkbd): New variable.
Pushed, thank you!
This bug report was last modified 2 years and 352 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.