summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2019-03-01 12:12:39 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-03-01 13:58:02 +0100
commit257bfab9d4d0f140ea984d122a5bcc1a4fd42598 (patch)
tree2ebf7b53cdd9a79734036d679fef64e0fdf9a1af
parentadf28c1585c9315970fcfc0d26ace7fce2326eec (diff)
downloadptxdist-257bfab9d4d0f140ea984d122a5bcc1a4fd42598.tar.gz
ptxdist-257bfab9d4d0f140ea984d122a5bcc1a4fd42598.tar.xz
dconf: remove after on year in staging
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/dconf.in18
-rw-r--r--rules/dconf.make71
2 files changed, 0 insertions, 89 deletions
diff --git a/rules/dconf.in b/rules/dconf.in
deleted file mode 100644
index 36ee65050..000000000
--- a/rules/dconf.in
+++ /dev/null
@@ -1,18 +0,0 @@
-## SECTION=staging
-## old section:
-### SECTION=system_libraries
-
-config DCONF
- tristate
- select GLIB
- select LIBC_RT
- select LIBC_RESOLV
- select DBUS
- prompt "dconf"
- help
- dconf is a low-level configuration system. Its main purpose is to
- provide a backend to GSettings on platforms that don't already have
- configuration storage systems.
-
- STAGING: remove in ptxdist-2019.02.0
- Really old version that needs updating and fails to build.
diff --git a/rules/dconf.make b/rules/dconf.make
deleted file mode 100644
index 71c2fba51..000000000
--- a/rules/dconf.make
+++ /dev/null
@@ -1,71 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2010 by Robert Schwebel <r.schwebel@pengutronix.de>
-#
-# See CREDITS for details about who has contributed to this project.
-#
-# For further information about the PTXdist project and license conditions
-# see the README file.
-#
-
-#
-# We provide this package
-#
-PACKAGES-$(PTXCONF_DCONF) += dconf
-
-#
-# Paths and names
-#
-DCONF_VERSION := 0.9.0
-DCONF_MD5 := bd59d7ad24a1cb42092f80beddce4632
-DCONF := dconf-$(DCONF_VERSION)
-DCONF_SUFFIX := tar.bz2
-DCONF_URL := http://download.gnome.org/sources/dconf/0.9/$(DCONF).$(DCONF_SUFFIX)
-DCONF_SOURCE := $(SRCDIR)/$(DCONF).$(DCONF_SUFFIX)
-DCONF_DIR := $(BUILDDIR)/$(DCONF)
-DCONF_LICENSE := LGPL-2.1-only
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-#
-# autoconf
-#
-DCONF_CONF_TOOL := autoconf
-
-DCONF_CONF_OPT := \
- $(CROSS_AUTOCONF_USR) \
- --disable-gtk-doc \
- --disable-gtk-doc-html \
- --disable-gtk-doc-pdf \
- --disable-editor
-
-
-# ----------------------------------------------------------------------------
-# Target-Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/dconf.targetinstall:
- @$(call targetinfo)
-
- @$(call install_init, dconf)
- @$(call install_fixup, dconf,PRIORITY,optional)
- @$(call install_fixup, dconf,SECTION,base)
- @$(call install_fixup, dconf,AUTHOR,"Robert Schwebel <r.schwebel@pengutronix.de>")
- @$(call install_fixup, dconf,DESCRIPTION,missing)
-
- @$(call install_copy, dconf, 0, 0, 0644, -, /usr/lib/gio/modules/libdconfsettings.so)
- @$(call install_lib, dconf, 0, 0, 0644, libdconf)
-
- @$(call install_copy, dconf, 0, 0, 0755, -, /usr/libexec/dconf-service)
- @$(call install_copy, dconf, 0, 0, 0755, -, /usr/bin/dconf)
-
- @$(call install_copy, dconf, 0, 0, 0644, -, /usr/share/dbus-1/services/ca.desrt.dconf.service)
- @$(call install_copy, dconf, 0, 0, 0644, -, /usr/share/dbus-1/system-services/ca.desrt.dconf.service)
-
- @$(call install_finish, dconf)
-
- @$(call touch)
-
-# vim: syntax=make