From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:43651) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j2NdP-0006Ut-8x for guix-patches@gnu.org; Thu, 13 Feb 2020 18:11:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j2NdO-0003hF-2X for guix-patches@gnu.org; Thu, 13 Feb 2020 18:11:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:54654) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j2NdN-0003gz-VS for guix-patches@gnu.org; Thu, 13 Feb 2020 18:11:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j2NdN-0001vv-QI for guix-patches@gnu.org; Thu, 13 Feb 2020 18:11:01 -0500 Subject: [bug#39592] [PATCH] gnu: Add fbset. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:43135) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j2Ncx-0006M1-R0 for guix-patches@gnu.org; Thu, 13 Feb 2020 18:10:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j2Ncv-0002vy-36 for guix-patches@gnu.org; Thu, 13 Feb 2020 18:10:34 -0500 Received: from tobias.gr ([2001:470:7405::1]:56326) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j2Ncu-0002qH-N1 for guix-patches@gnu.org; Thu, 13 Feb 2020 18:10:33 -0500 Received: by tobias.gr (OpenSMTPD) with ESMTP id 76269b56 for ; Thu, 13 Feb 2020 23:10:30 +0000 (UTC) Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 16293842 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO) for ; Thu, 13 Feb 2020 23:10:29 +0000 (UTC) Date: Fri, 14 Feb 2020 00:10:23 +0100 Message-Id: <20200213231023.14895-1-me@tobias.gr> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" Reply-to: Tobias Geerinckx-Rice , Tobias Geerinckx-Rice via Guix-patches From: Tobias Geerinckx-Rice via Guix-patches via To: 39592@debbugs.gnu.org * gnu/packages/linux.scm (fbset): New public variable. --- gnu/packages/linux.scm | 56 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index b098567d24..3072b0f7d9 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1275,6 +1275,62 @@ The Discordian calendar was made popular by the \"Illuminatus!\" trilogy by Robert Shea and Robert Anton Wilson.") (license license:public-domain))) +(define-public fbset + (package + (name "fbset") + (version "2.1") + (source + (origin + (method url-fetch) + (uri (string-append "http://users.telenet.be/geertu/Linux/fbdev/fbset-" + version ".tar.gz")) + (sha256 + (base32 "080wnisi0jq7dp0jcwdp83rq8q8s3kw41vc712516xbv4jq4mzs0")))) + (build-system gnu-build-system) + (arguments + '(#:modules ((guix build gnu-build-system) + (guix build utils) + (srfi srfi-26)) + #:phases + (modify-phases %standard-phases + (delete 'configure) ; no configure script + (add-before 'install 'pre-install + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (substitute* "Makefile" + (("mknod ") "true ") + ;; The Makefile doesn't honour PREFIX or similar. + (("/usr") out)) + (mkdir out) + (with-directory-excursion out + (for-each mkdir-p (list "sbin" + "man/man5" + "man/man8"))) + #t))) + (add-after 'install 'install-fb.modes + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (etc (string-append out "/etc"))) + (for-each (cut install-file <> etc) + (find-files "etc" "^fb\\.modes")) + (symlink "fb.modes.ATI" + (string-append etc "/fb.modes")) + #t)))) + ;; Parallel building races to create modes.tab.c. + #:parallel-build? #f + #:tests? #f)) + (native-inputs + `(("bison" ,bison) + ("flex" ,flex))) + (home-page "http://users.telenet.be/geertu/Linux/fbdev/") + (synopsis "Show and modify Linux frame buffer settings") + (description + "The kernel Linux's @dfn{frame buffers} provide a simple interface to +different kinds of graphic displays. The @command{fbset} utility can query and +change various device settings such as depth, virtual resolution, and timing +parameters.") + (license license:gpl2))) + (define-public procps (package (name "procps") -- 2.23.0