summaryrefslogtreecommitdiffstats
path: root/rules
diff options
context:
space:
mode:
Diffstat (limited to 'rules')
-rw-r--r--rules/apr-util.in20
-rw-r--r--rules/apr-util.make60
2 files changed, 0 insertions, 80 deletions
diff --git a/rules/apr-util.in b/rules/apr-util.in
deleted file mode 100644
index 6f73ae3f1..000000000
--- a/rules/apr-util.in
+++ /dev/null
@@ -1,20 +0,0 @@
-## SECTION=staging
-## old section:
-### SECTION=networking
-
-config APR_UTIL
- tristate
- select APR
- select HOST_APR_UTIL
- select EXPAT
- prompt "apr-util"
- help
- APR is Apache's Portable Runtime Library, designed to be a
- support library that provides a predictable and consistent
- interface to underlying platform-specific implementations.
- APR Util is a utilities library implemented on top of apr,
- providing database access, xml parsing, and other useful
- functionality.
-
- STAGING: remove in ptxdist-2019.03.0
- Really old version that needs updating.
diff --git a/rules/apr-util.make b/rules/apr-util.make
deleted file mode 100644
index b9db68605..000000000
--- a/rules/apr-util.make
+++ /dev/null
@@ -1,60 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2012 by Marc Kleine-Budde <mkl@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_APR_UTIL) += apr-util
-
-#
-# Paths and names
-#
-APR_UTIL_VERSION := 0.9.19
-APR_UTIL_MD5 := 927a200513018a579cc9936c05d35206
-APR_UTIL := apr-util-$(APR_UTIL_VERSION)
-APR_UTIL_SUFFIX := tar.bz2
-APR_UTIL_URL := http://archive.apache.org/dist/apr/$(APR_UTIL).$(APR_UTIL_SUFFIX)
-APR_UTIL_SOURCE := $(SRCDIR)/$(APR_UTIL).$(APR_UTIL_SUFFIX)
-APR_UTIL_DIR := $(BUILDDIR)/$(APR_UTIL)
-APR_UTIL_LICENSE := Apache-2.0
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-#
-# autoconf
-#
-APR_UTIL_CONF_TOOL := autoconf
-APR_UTIL_CONF_OPT := \
- $(CROSS_AUTOCONF_USR) \
- --with-apr=$(PTXDIST_SYSROOT_CROSS)/bin/apr-config \
- --with-expat=$(PTXDIST_SYSROOT_TARGET)/usr
-
-# ----------------------------------------------------------------------------
-# Target-Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/apr-util.targetinstall:
- @$(call targetinfo)
-
- @$(call install_init, apr-util)
- @$(call install_fixup, apr-util,PRIORITY,optional)
- @$(call install_fixup, apr-util,SECTION,base)
- @$(call install_fixup, apr-util,AUTHOR,"Marc Kleine-Budde <mkl@pengutronix.de>")
- @$(call install_fixup, apr-util,DESCRIPTION,missing)
-
- @$(call install_lib, apr-util, 0, 0, 0644, libaprutil-0)
-
- @$(call install_finish, apr-util)
-
- @$(call touch)
-
-# vim: syntax=make