unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Kei Yamashita <kei@openmailbox.org>
To: leo@famulari.name
Cc: guix-devel@gnu.org
Subject: [PATCH] gnu: dillo: New module
Date: Sun, 17 Apr 2016 00:05:22 -0400	[thread overview]
Message-ID: <20160417000522.4aaa59a4@openmailbox.org> (raw)

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



Begin forwarded message:

Date: Sun, 17 Apr 2016 00:04:30 -0400
From: Kei Yamashita <kei@openmailbox.org>
To: Leo Famulari <leo@famulari.name>
Subject: Re: [PATCH] gnu: dillo: New module


Indeed I did. :-P

On Sat, 16 Apr 2016 23:25:57 -0400
Leo Famulari <leo@famulari.name> wrote:

> I think you forgot to attach the patch. We all do that once in a
> while ;)
> 
> 
> -------- Original Message --------
> From: Kei Yamashita <kei@openmailbox.org>
> Sent: April 16, 2016 10:53:43 PM EDT
> To: guix-devel@gnu.org
> Subject: [PATCH] gnu: dillo: New module
> 
> I'm not sure what the process is for a new module. Please guide me in
> this if something else needs to be done.
> 
>   


[-- Attachment #2: 0001-gnu-dillo-New-module.patch --]
[-- Type: application/octet-stream, Size: 3106 bytes --]

From d9adc615831e6ac7d6c9cd8891bb89773fbc2760 Mon Sep 17 00:00:00 2001
From: Kei Yamashita <kei@openmailbox.org>
Date: Sat, 16 Apr 2016 22:51:02 -0400
Subject: [PATCH] gnu: dillo: New module

* gnu/packages/dillo.scm: New file
---
 gnu/packages/dillo.scm | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 63 insertions(+)
 create mode 100644 gnu/packages/dillo.scm

diff --git a/gnu/packages/dillo.scm b/gnu/packages/dillo.scm
new file mode 100644
index 0000000..d674af3
--- /dev/null
+++ b/gnu/packages/dillo.scm
@@ -0,0 +1,63 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2016 Kei Yamashita <kei@openmailbox.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 dillo)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix packages)
+  #:use-module (gnu packages)
+  #:use-module (gnu packages compression)
+  #:use-module (gnu packages fltk)
+  #:use-module (gnu packages fontutils)
+  #:use-module (gnu packages perl)
+  #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages image)
+  #:use-module (gnu packages tls)
+  #:use-module (gnu packages xorg)
+  #:use-module (guix download)
+  #:use-module (guix build-system gnu))
+
+(define-public dillo
+  (package
+    (name "dillo")
+    (version "3.0.5")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://www.dillo.org/download/"
+                                  name "-" version ".tar.bz2"))
+              (sha256
+               (base32
+                "12ql8n1lypv3k5zqgwjxlw1md90ixz3ag6j1gghfnhjq3inf26yv"))))
+    (build-system gnu-build-system)
+    (arguments `(#:configure-flags '("--enable-ssl")))
+    (native-inputs `(("pkg-config" ,pkg-config)))
+    (inputs `(("fltk" ,fltk)
+              ("fontconfig" ,fontconfig)
+              ("libjpeg" ,libjpeg)
+              ("libpng" ,libpng)
+              ("libxcursor" ,libxcursor)
+              ("libxft" ,libxft)
+              ("libxi" ,libxi)
+              ("libxinerama" ,libxinerama)
+              ("openssl" ,openssl)
+              ("perl" ,perl)
+              ("zlib" ,zlib)))
+    (synopsis "Very small and fast graphical web browser")
+    (description "Dillo is a minimalistic web browser particularly intended for
+older or slower computers and embedded systems.")
+    (home-page "http://www.dillo.org")
+    (license license:gpl3+)))
-- 
2.7.3


             reply	other threads:[~2016-04-17  4:05 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-17  4:05 Kei Yamashita [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-04-17  2:53 [PATCH] gnu: dillo: New module Kei Yamashita
2016-04-17  7:57 ` Alex Kost
2016-04-17 14:14   ` Kei Yamashita
2016-04-18 19:48     ` 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=20160417000522.4aaa59a4@openmailbox.org \
    --to=kei@openmailbox.org \
    --cc=guix-devel@gnu.org \
    --cc=leo@famulari.name \
    /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).