From 889e57f4d87696c32617bd5345d6ce28f3662c90 Mon Sep 17 00:00:00 2001 From: Mathieu Lirzin Date: Sat, 11 Jul 2015 08:25:14 +0200 Subject: gnu: Add lxappearance. * gnu/packages/lxde.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it. --- gnu-system.am | 1 + 1 file changed, 1 insertion(+) (limited to 'gnu-system.am') diff --git a/gnu-system.am b/gnu-system.am index 78a7750b05..995da1541c 100644 --- a/gnu-system.am +++ b/gnu-system.am @@ -193,6 +193,7 @@ GNU_SYSTEM_MODULES = \ gnu/packages/lsh.scm \ gnu/packages/lsof.scm \ gnu/packages/lua.scm \ + gnu/packages/lxde.scm \ gnu/packages/lxqt.scm \ gnu/packages/lynx.scm \ gnu/packages/m4.scm \ -- cgit v1.2.3 From 82700f0fb357216527e6792f0d3d3842851fc167 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sat, 18 Jul 2015 17:14:09 +0200 Subject: gnu: crda: Add forgotten patch. This file should have been added as part of commit cc205da. * gnu/packages/patches/crda-optional-gcrypt.patch: New file. * gnu-system.am (dist_patch_DATA): Add it. --- gnu-system.am | 1 + gnu/packages/patches/crda-optional-gcrypt.patch | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 gnu/packages/patches/crda-optional-gcrypt.patch (limited to 'gnu-system.am') diff --git a/gnu-system.am b/gnu-system.am index 995da1541c..fb661d4544 100644 --- a/gnu-system.am +++ b/gnu-system.am @@ -412,6 +412,7 @@ dist_patch_DATA = \ gnu/packages/patches/cpio-fix-symlink-bad-length-test.patch \ gnu/packages/patches/cpio-gets-undeclared.patch \ gnu/packages/patches/cpufrequtils-fix-aclocal.patch \ + gnu/packages/patches/crda-optional-gcrypt.patch \ gnu/packages/patches/crossmap-allow-system-pysam.patch \ gnu/packages/patches/cssc-gets-undeclared.patch \ gnu/packages/patches/cssc-missing-include.patch \ diff --git a/gnu/packages/patches/crda-optional-gcrypt.patch b/gnu/packages/patches/crda-optional-gcrypt.patch new file mode 100644 index 0000000000..770ab1a97e --- /dev/null +++ b/gnu/packages/patches/crda-optional-gcrypt.patch @@ -0,0 +1,20 @@ +This patch allows us to make the libgcrypt dependency optional (which it +is, if you look at the code), which in turns allows us to build CRDA +without the signature-checking capability on 'regulatory.bin'. + +--- crda/Makefile 2015-07-17 11:33:33.546712893 +0200 ++++ crda/Makefile 2015-07-17 11:34:05.210994373 +0200 +@@ -45,12 +45,14 @@ LDLIBS += `pkg-config --libs openssl` + $(LIBREG): keys-ssl.c + + else ++ifeq ($(USE_GCRYPT),1) + CFLAGS += -DUSE_GCRYPT + LDLIBS += -lgcrypt + + $(LIBREG): keys-gcrypt.c + + endif ++endif + MKDIR ?= mkdir -p + INSTALL ?= install -- cgit v1.2.3