From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:54741) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j5e8t-0005qu-85 for guix-patches@gnu.org; Sat, 22 Feb 2020 18:25:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j5e8s-0002S7-3Y for guix-patches@gnu.org; Sat, 22 Feb 2020 18:25:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:44237) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j5e8s-0002S0-04 for guix-patches@gnu.org; Sat, 22 Feb 2020 18:25:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j5e8r-0006YA-TR for guix-patches@gnu.org; Sat, 22 Feb 2020 18:25:01 -0500 Subject: [bug#39674] [PATCH] enable PostScript backend in Evince Resent-Message-ID: Date: Sun, 23 Feb 2020 00:24:37 +0100 From: raingloom Message-Id: <1582413877.30358.1@riseup.net> In-Reply-To: <8736b591rt.fsf@guixSD.i-did-not-set--mail-host-address--so-tickle-me> References: <1582114083.2225.0@riseup.net> <87o8tubw3l.fsf@guixSD.i-did-not-set--mail-host-address--so-tickle-me> <8736b591rt.fsf@guixSD.i-did-not-set--mail-host-address--so-tickle-me> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable 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" To: 39674@debbugs.gnu.org Looks like it's an optional feature in Arch, provided by installing the=20 texlive optional dependency. Isn't that enough on Guix as well? I have no DVI files on hand to test=20 it. https://git.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=3Dpac= kages/evince&id=3Df1f028f091aa277ffac13388e01d2d0f2f396fab On Thu, Feb 20, 2020 at 08:05, Nicol=F2 Balzarotti=20 wrote: > Should we enable DVI too? What are other distributions doing? >=20 > Nicol=F2 Balzarotti writes: >=20 >> Thanks! >>=20 >> I was wondering why it could not open .eps files! I tested the=20 >> patch, >> applies, build and now I can open them. guix size reports +3% >> (1009.6 -> 1038.0). >>=20 >> +1 for merging >>=20 >> raingloom writes: >>=20 >>> Some of my teacheres distribute notes in .ps files, so I kinda need >>> this, and I think others will find it helpful as well. >>>=20 >>> AFAIK other distros enable it too. >>>=20 >>> Much easier than converting PostScript files to PDF. >>>=20 >>> From c767aa2d6a3d779d90e8185e313892eb2212dd37 Mon Sep 17 00:00:00=20 >>> 2001 >>> From: raingloom >>> Date: Wed, 19 Feb 2020 12:47:42 +0100 >>> Subject: [PATCH] gnu: evince: --enable-ps >>>=20 >>> --- >>> gnu/packages/gnome.scm | 3 ++- >>> 1 file changed, 2 insertions(+), 1 deletion(-) >>>=20 >>> diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm >>> index 3c63ab283d..5fae5d11ad 100644 >>> --- a/gnu/packages/gnome.scm >>> +++ b/gnu/packages/gnome.scm >>> @@ -1502,7 +1502,8 @@ forgotten when the session ends.") >>> =20 >>> "05q6v9lssd21623mnj2p49clj9v9csw9kay7n4nklki025grbh1w")))) >>> (build-system glib-or-gtk-build-system) >>> (arguments >>> - `(#:configure-flags '("--disable-nautilus"=20 >>> "--enable-introspection") >>> + `(#:configure-flags '("--disable-nautilus"=20 >>> "--enable-introspection" >>> + "--enable-ps") >>> #:phases >>> (modify-phases %standard-phases >>> (add-before 'install 'skip-gtk-update-icon-cache >>> -- >>> 2.25.0 =