From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: [PATCH] gnu: Add ttf-dejavu Date: Sat, 15 Feb 2014 22:46:02 -0500 Message-ID: <87y51bpvnp.fsf@netris.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38225) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WEsh9-0007Ts-Fj for guix-devel@gnu.org; Sat, 15 Feb 2014 22:47:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WEsh4-0005zZ-Jx for guix-devel@gnu.org; Sat, 15 Feb 2014 22:47:07 -0500 Received: from world.peace.net ([96.39.62.75]:36503) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WEsh4-0005z0-EH for guix-devel@gnu.org; Sat, 15 Feb 2014 22:47:02 -0500 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain Hello all, This font is derived from Bitstream Vera but includes glyphs for more languages and also includes a serif font family. The latin sans-serif and monospace is the same as Bitstream Vera, or at least I'm not aware of any difference. It's a drop-in replacement with no downsides. If you install this, I suggest that you remove the ttf-bitstream-vera package at the same time, so that generic font names such as "Monospace" will henceforth refer to DejaVu. Emacs users will notice a big improvement in the look of many of the non-latin character sets, as demonstrated on the HELLO page (C-h h). Note that you must run "fc-cache -fv" after installing this package to rebuild your font cache, and Emacs won't pick it up until it is restarted. I haven't pushed this yet. Comments and suggestions welcome. Mark --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-ttf-dejavu.patch Content-Transfer-Encoding: quoted-printable Content-Description: [PATCH] gnu: Add ttf-dejavu >From c1efb6a23eb6c55537b7f397dfe327fa882f5ef7 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Sat, 15 Feb 2014 20:32:57 -0500 Subject: [PATCH] gnu: Add ttf-dejavu. * gnu/packages/fonts.scm (ttf-dejavu): New variable. --- gnu/packages/fonts.scm | 67 ++++++++++++++++++++++++++++++++++++++++++++++= ++++ 1 file changed, 67 insertions(+) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index c367a46..8ec59e4 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright =C2=A9 2013 Ludovic Court=C3=A8s +;;; Copyright =C2=A9 2014 Mark H Weaver ;;; ;;; This file is part of GNU Guix. ;;; @@ -26,6 +27,72 @@ #:select (tar)) #:use-module (gnu packages compression)) =20 +(define-public ttf-dejavu + (package + (name "ttf-dejavu") + (version "2.34") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/dejavu/" + version "/dejavu-fonts-ttf-" + version ".tar.bz2")) + (sha256 + (base32 + "0pgb0a3ngamidacmrvasg51ck3gp8gn93w6sf1s8snwzx4x2r9yh")))) + (build-system trivial-build-system) + (arguments + `(#:modules ((guix build utils)) + #:builder (begin + (use-modules (guix build utils)) + + (let ((tar (string-append (assoc-ref %build-inputs + "tar") + "/bin/tar")) + (PATH (string-append (assoc-ref %build-inputs + "bzip2") + "/bin")) + (font-dir (string-append + %output "/share/fonts/truetype")) + (conf-dir (string-append + %output "/share/fontconfig/conf.avail"= )) + (doc-dir (string-append + %output "/share/doc/" ,name "-" ,versi= on))) + (setenv "PATH" PATH) + (system* tar "xvf" (assoc-ref %build-inputs "source")) + + (mkdir-p font-dir) + (mkdir-p conf-dir) + (mkdir-p doc-dir) + (chdir (string-append "dejavu-fonts-ttf-" ,version)) + (for-each (lambda (ttf) + (copy-file ttf + (string-append font-dir "/" + (basename ttf))= )) + (find-files "ttf" "\\.ttf$")) + (for-each (lambda (conf) + (copy-file conf + (string-append conf-dir "/" + (basename conf)= ))) + (find-files "fontconfig" "\\.conf$")) + (for-each (lambda (doc) + (copy-file doc + (string-append doc-dir "/" + (basename doc))= )) + (find-files "." "\\.txt$|^[A-Z][A-Z]*$"))))= )) + (native-inputs `(("source" ,source) + ("tar" ,tar) + ("bzip2" ,bzip2))) + (home-page "http://dejavu-fonts.org/") + (synopsis "Vera font family derivate with additional characters") + (description "DejaVu provides an expanded version of the Vera font fam= ily +aiming for quality and broader Unicode coverage while retaining the origin= al +Vera style. DejaVu currently works towards conformance with the Multiling= ual +European Standards (MES-1 and MES-2) for Unicode coverage. The DejaVu fon= ts +provide serif, sans and monospaced variants.") + (license + (license:x11-style + "http://dejavu-fonts.org/")))) + (define-public ttf-bitstream-vera (package (name "ttf-bitstream-vera") --=20 1.8.4 --=-=-=--