From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: [PATCH] gnu: Add xosd. Date: Wed, 11 Feb 2015 22:28:44 +0300 Message-ID: <87pp9g9rir.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/x-diff; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43584) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLcxv-0005jq-EE for guix-devel@gnu.org; Wed, 11 Feb 2015 14:28:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YLcxs-0007Am-NK for guix-devel@gnu.org; Wed, 11 Feb 2015 14:28:51 -0500 Received: from mail-la0-f52.google.com ([209.85.215.52]:42270) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLcxs-0007AQ-FT for guix-devel@gnu.org; Wed, 11 Feb 2015 14:28:48 -0500 Received: by labgf13 with SMTP id gf13so5552773lab.9 for ; Wed, 11 Feb 2015 11:28:47 -0800 (PST) Received: from leviafan ([217.107.192.189]) by mx.google.com with ESMTPSA id ky8sm337176lac.4.2015.02.11.11.28.45 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 11 Feb 2015 11:28:46 -0800 (PST) Content-Disposition: attachment; filename=0001-gnu-Add-xosd.patch 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 >From 8a9ee48b755ad6b635ebba408fcc63653db91edd Mon Sep 17 00:00:00 2001 From: Alex Kost Date: Wed, 11 Feb 2015 22:20:00 +0300 Subject: [PATCH] gnu: Add xosd. * gnu/packages/xdisorg.scm (xosd): New variable. --- gnu/packages/xdisorg.scm | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index b485632..d0c983d 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -2,7 +2,7 @@ ;;; Copyright =C2=A9 2013, 2014 Andreas Enge ;;; Copyright =C2=A9 2014 Mark H Weaver ;;; Copyright =C2=A9 2014 Eric Bavier -;;; Copyright =C2=A9 2014 Alex Kost +;;; Copyright =C2=A9 2014, 2015 Alex Kost ;;; Copyright =C2=A9 2013, 2015 Ludovic Court=C3=A8s ;;; ;;; This file is part of GNU Guix. @@ -392,3 +392,31 @@ X Window System.") (license (license:bsd-style #f "See xlock.c.") ;; + GPLv2 in modes/glx/biof.c. ))) + +(define-public xosd + (package + (name "xosd") + (version "2.2.14") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://sourceforge/libxosd/xosd-" + version ".tar.gz")) + (sha256 + (base32 + "025m7ha89q29swkc7s38knnbn8ysl24g2h5s7imfxflm91psj7sg")))) + (build-system gnu-build-system) + (arguments + '(#:configure-flags + (list (string-append "--mandir=3D" %output "/share/man")))) + (inputs + `(("libx11" ,libx11) + ("libxt" ,libxt) + ("libxext" ,libxext) + ("libxinerama" ,libxinerama))) + (home-page "http://sourceforge.net/projects/libxosd/") + (synopsis "X On Screen Display") + (description + "XOSD provides a C library and a simple utility (osd_cat) for display= ing +transparent text on your screen.") + (license license:gpl2+))) --=20 2.2.2