unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Efraim Flashner <efraim@flashner.co.il>
To: Roel Janssen <roel@gnu.org>
Cc: Guix-devel <guix-devel@gnu.org>
Subject: Re: [PATCH] gnu: Add texmaker.
Date: Mon, 23 May 2016 20:59:50 +0300	[thread overview]
Message-ID: <20160523175950.GB18979@debian-netbook> (raw)
In-Reply-To: <87posdzltg.fsf@gnu.org>

[-- Attachment #1: Type: text/plain, Size: 4826 bytes --]

On Mon, May 23, 2016 at 01:59:07AM +0200, Roel Janssen wrote:
> Dear Guix,
> 
> For the lack of a better place, I created a new file for texmaker.
> Maybe we should consider moving all LaTeX-related stuff into latex.scm.
> 
> Here's a patch for Texmaker -- a decent LaTeX editor for the non-Emacs
> users ;-).

You mean you don't just use vim? ;P

It built perfectly for me and opened nicely too. I think it does make
sense to stick a bunch of LaTeX stuff into a dedicated file, but I'm not
seeing a lot ATM. Would sticking it in texlive make sense?

> 
> >From c1da9bec615cc81d6dccc75386f813459a4e14f4 Mon Sep 17 00:00:00 2001
> From: Roel Janssen <roel@gnu.org>
> Date: Mon, 23 May 2016 01:53:20 +0200
> Subject: [PATCH] gnu: Add texmaker.
> 
> * gnu/local.mk (GNU_SYSTEM_MODULES): Add texmaker entry.
> * gnu/packages/texmaker.scm: New file.
> ---
>  gnu/local.mk              |  1 +
>  gnu/packages/texmaker.scm | 65 +++++++++++++++++++++++++++++++++++++++++++++++
>  2 files changed, 66 insertions(+)
>  create mode 100644 gnu/packages/texmaker.scm
> 
> diff --git a/gnu/local.mk b/gnu/local.mk
> index c130901..80e3c82 100644
> --- a/gnu/local.mk
> +++ b/gnu/local.mk
> @@ -326,6 +326,7 @@ GNU_SYSTEM_MODULES =				\
>    gnu/packages/terminals.scm			\
>    gnu/packages/texinfo.scm			\
>    gnu/packages/texlive.scm			\
> +  gnu/packages/texmaker.scm			\
>    gnu/packages/textutils.scm			\
>    gnu/packages/time.scm				\
>    gnu/packages/tls.scm				\
> diff --git a/gnu/packages/texmaker.scm b/gnu/packages/texmaker.scm
> new file mode 100644
> index 0000000..36abc80
> --- /dev/null
> +++ b/gnu/packages/texmaker.scm
> @@ -0,0 +1,65 @@
> +;;; GNU Guix --- Functional package management for GNU
> +;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
> +;;;
> +;;; This file is part of GNU Guix.
> +;;;
> +;;; GNU Guix is free software; you can redistribute it and/or modify it
> +;;; under the terms of the GNU General Public License as published by
> +;;; the Free Software Foundation; either version 3 of the License, or (at
> +;;; your option) any later version.
> +;;;
> +;;; GNU Guix is distributed in the hope that it will be useful, but
> +;;; WITHOUT ANY WARRANTY; without even the implied warranty of
> +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> +;;; GNU General Public License for more details.
> +;;;
> +;;; You should have received a copy of the GNU General Public License
> +;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
> +
> +(define-module (gnu packages texmaker)
> +  #:use-module ((guix licenses) #:prefix license:)
> +  #:use-module (guix packages)
> +  #:use-module (guix download)
> +  #:use-module (guix build-system gnu)
> +  #:use-module (gnu packages)
> +  #:use-module (gnu packages compression)
> +  #:use-module (gnu packages pdf)
> +  #:use-module (gnu packages pkg-config)
> +  #:use-module (gnu packages qt))
> +
> +(define-public texmaker
> +  (package
> +    (name "texmaker")
> +    (version "4.5")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append "http://www.xm1math.net/texmaker/texmaker-"
> +                                  version ".tar.bz2"))
> +              (sha256
> +               (base32
> +                "056njk6j8wma23mlp7xa3rgfaxx0q8ynwx8wkmj7iy0b85p9ds9c"))))
> +    (build-system gnu-build-system)
> +    (arguments
> +     `(#:phases
> +       (modify-phases %standard-phases
> +         ;; Qt has its own configuration utility.
> +         (replace 'configure
> +           (lambda* (#:key outputs #:allow-other-keys)
> +             (let ((out (assoc-ref outputs "out")))
> +               (zero? (system* "qmake"
> +                               (string-append "PREFIX=" out)
> +                               (string-append "DESKTOPDIR=" out
> +                                              "/share/applications")
> +                               (string-append "ICONDIR=" out "/share/pixmaps")
> +                               "texmaker.pro"))))))))
> +    (inputs
> +     `(("poppler-qt5" ,poppler-qt5)
> +       ("qt" ,qt)
> +       ("zlib" ,zlib)))
> +    (native-inputs
> +     `(("pkg-config" ,pkg-config)))
> +    (home-page "http://www.xm1math.net/texmaker/")
> +    (synopsis "LaTeX editor")
> +    (description "Texmaker is a program that integrates many tools needed to
> +develop documents with LaTeX, in a single application.")
> +    (license license:gpl2+)))
> -- 
> 2.7.4
> 
> 
> Kind regards,
> Roel Janssen
> 

-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

  reply	other threads:[~2016-05-23 18:00 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-22 23:59 [PATCH] gnu: Add texmaker Roel Janssen
2016-05-23 17:59 ` Efraim Flashner [this message]
2016-05-23 18:12   ` Roel Janssen
2016-05-23 21:33 ` Ludovic Courtès
2016-05-23 22:19   ` Roel Janssen
2016-05-24  9:51     ` Ludovic Courtès
2016-05-24 10:08       ` Efraim Flashner
2016-05-24 10:11       ` Ben Woodcroft
2016-05-24 16:10       ` Leo Famulari
2016-05-25 21:58         ` Ludovic Courtès
2016-05-24 19:34       ` Roel Janssen
2016-05-26  7:56         ` Ludovic Courtès
2016-05-26  8:47           ` Roel Janssen
2016-05-26 16:15             ` Leo Famulari

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160523175950.GB18979@debian-netbook \
    --to=efraim@flashner.co.il \
    --cc=guix-devel@gnu.org \
    --cc=roel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).