From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48861) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fpV6Y-0003fZ-9B for guix-patches@gnu.org; Tue, 14 Aug 2018 04:55:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fpV6U-0004gO-CE for guix-patches@gnu.org; Tue, 14 Aug 2018 04:55:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:45087) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fpV6U-0004gI-86 for guix-patches@gnu.org; Tue, 14 Aug 2018 04:55:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fpV6T-0001vS-U5 for guix-patches@gnu.org; Tue, 14 Aug 2018 04:55:01 -0400 Subject: [bug#32435] [PATCH 1/2] gnu: Add texlive-latex-media9. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48793) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fpV61-0002Ih-S1 for guix-patches@gnu.org; Tue, 14 Aug 2018 04:54:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fpV5x-0004Vb-Vd for guix-patches@gnu.org; Tue, 14 Aug 2018 04:54:33 -0400 Received: from mail-wm0-x22e.google.com ([2a00:1450:400c:c09::22e]:51719) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fpV5f-0004Qq-O8 for guix-patches@gnu.org; Tue, 14 Aug 2018 04:54:29 -0400 Received: by mail-wm0-x22e.google.com with SMTP id y2-v6so11473195wma.1 for ; Tue, 14 Aug 2018 01:54:11 -0700 (PDT) Received: from localhost.localdomain (jof81-3-78-242-177-83.fbx.proxad.net. [78.242.177.83]) by smtp.gmail.com with ESMTPSA id q11-v6sm20766758wrp.58.2018.08.14.01.54.09 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 14 Aug 2018 01:54:09 -0700 (PDT) From: Pierre Neidhardt Date: Tue, 14 Aug 2018 10:54:05 +0200 Message-Id: <20180814085405.6925-1-ambrevar@gmail.com> 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: 32435@debbugs.gnu.org * gnu/packages/tex.scm (texlive-latex-media9): New variable. --- gnu/packages/tex.scm | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 4a0a4facc..555971b9e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4386,3 +4386,43 @@ cross-references, bibliographies, indexes, etc. It is very good for working with documents of any length in which the usual processing abilities are required: automatic sectioning and pagination, spell checking and so forth.") (license license:gpl2+))) + +(define-public texlive-latex-media9 + (package + (name "texlive-latex-media9") + (version (number->string %texlive-revision)) + (source (origin + (method svn-fetch) + (uri (svn-reference + (url (string-append "svn://www.tug.org/texlive/tags/" + %texlive-tag "/Master/texmf-dist/" + "/tex/latex/media9")) + (revision %texlive-revision))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "01ysky8h8s6q12dxfahkzwhbkc9j5wl50xzcczy0cbjx9f6aj9kv")))) + (build-system trivial-build-system) + (arguments + `(#:modules ((guix build utils)) + #:builder + (begin + (use-modules (guix build utils)) + (let ((target (string-append (assoc-ref %outputs "out") + "/share/texmf-dist/tex/latex/media9"))) + (mkdir-p target) + (copy-recursively (assoc-ref %build-inputs "source") target) + #t)))) + (home-page "https://www.ctan.org/pkg/media9") + (synopsis "Multimedia inclusion package with Adobe Reader-9/X compatibility") + (description + "The package provides an interface to embed interactive Flash (SWF) and 3D +objects (Adobe U3D & PRC), as well as video and sound files or streams in the +popular MP4, FLV and MP3 formats into PDF documents with Acrobat-9/X +compatibility. Playback of multimedia files uses the built-in Flash Player of +Adobe Reader and does, therefore, not depend on external plug-ins. Flash Player +supports the efficient H.264 codec for video compression. + +The package is based on the RichMedia Annotation, an Adobe addition to the PDF +specification. It replaces the now obsolete @code{movie15} package.") + (license license:lppl))) -- 2.18.0