From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Lirzin Subject: [PATCH 7/7] gnu: Add lxrandr. Date: Thu, 16 Jul 2015 12:19:20 +0200 Message-ID: <1437041960-5189-8-git-send-email-mthl@openmailbox.org> References: <1437041960-5189-1-git-send-email-mthl@openmailbox.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------2.1.4" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37603) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZFgJ4-0000DA-VA for guix-devel@gnu.org; Thu, 16 Jul 2015 06:22:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZFgJ2-00083v-HM for guix-devel@gnu.org; Thu, 16 Jul 2015 06:22:22 -0400 Received: from smtp13.openmailbox.org ([62.4.1.47]:51775) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZFgJ2-00083Q-C7 for guix-devel@gnu.org; Thu, 16 Jul 2015 06:22:20 -0400 Received: from localhost (localhost [127.0.0.1]) by mail2.openmailbox.org (Postfix) with ESMTP id 08C6D2028B5 for ; Thu, 16 Jul 2015 12:22:20 +0200 (CEST) In-Reply-To: <1437041960-5189-1-git-send-email-mthl@openmailbox.org> 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 This is a multi-part message in MIME format. --------------2.1.4 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: quoted-printable * gnu/packages/lxde.scm (lxrandr): New variable. --- gnu/packages/lxde.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) --------------2.1.4 Content-Type: text/x-patch; name="0007-gnu-Add-lxrandr.patch" Content-Disposition: inline; filename="0007-gnu-Add-lxrandr.patch" Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/lxde.scm b/gnu/packages/lxde.scm index a28eb3f..ef2d60c 100644 --- a/gnu/packages/lxde.scm +++ b/gnu/packages/lxde.scm @@ -89,6 +89,32 @@ able to change themes, icons, and fonts used by GTK+ a= pplications.") (home-page "http://lxde.org") (license license:gpl2+))) =20 +(define-public lxrandr + (package + (name "lxrandr") + (version "0.3.0") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/project/lxde/LXR= andR" + "%20%28monitor%20config%20tool%29/LXRa= ndR%20" + (version-major+minor version) ".x/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "0xkbqv66hisbxkvnf7y5kwqbhrq26f49wd7w6ylhnjlccpnylg8q"))= )) + (build-system gnu-build-system) + (inputs `(("gtk+" ,gtk+-2))) + (native-inputs `(("intltool" ,intltool) + ("pkg-config" ,pkg-config))) + (synopsis "LXDE monitor configuration tool") + (description "LXRandR is a very basic monitor configuration tool. It +utilises the X extension called RandR but doesn't aim to be a full front= end of +it. LXRandR only gives you some easy and quick options which are intuit= ive. +It's suitable for laptop users who frequently uses projectors or externa= l +monitor.") + (home-page "http://lxde.org") + (license license:gpl2+))) + (define-public lxtask (package (name "lxtask") --------------2.1.4--