2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2008-04-14 12:56:41 +02:00
|
|
|
#
|
|
|
|
# rpm
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-06-06 01:53:25 +02:00
|
|
|
|
2017-03-13 13:31:20 +01:00
|
|
|
RPM_VERSION_MAJOR = 4.13
|
|
|
|
RPM_VERSION = $(RPM_VERSION_MAJOR).0.1
|
2016-11-18 19:50:53 +01:00
|
|
|
RPM_SOURCE = rpm-$(RPM_VERSION).tar.bz2
|
2017-03-13 13:31:20 +01:00
|
|
|
RPM_SITE = http://ftp.rpm.org/releases/rpm-$(RPM_VERSION_MAJOR).x
|
2016-11-18 19:50:53 +01:00
|
|
|
RPM_DEPENDENCIES = host-pkgconf berkeleydb file popt zlib
|
2017-03-30 15:43:37 +02:00
|
|
|
RPM_LICENSE = GPL-2.0 or LGPL-2.0 (library only)
|
2016-11-18 19:50:53 +01:00
|
|
|
RPM_LICENSE_FILES = COPYING
|
2017-07-03 23:18:07 +02:00
|
|
|
RPM_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
|
2008-04-14 12:56:41 +02:00
|
|
|
|
2017-07-02 18:53:35 +02:00
|
|
|
# 0001-configure-ac-use-link-instead-of-compile-for-gcc-flags-test.patch
|
|
|
|
# 0002-configure-ac-correct-stack-protector-check.patch
|
2016-11-18 19:50:53 +01:00
|
|
|
RPM_AUTORECONF = YES
|
2008-04-14 12:56:41 +02:00
|
|
|
|
2014-12-30 08:36:23 +01:00
|
|
|
RPM_CONF_OPTS = \
|
2016-11-18 19:50:53 +01:00
|
|
|
--disable-python \
|
2014-12-30 08:36:23 +01:00
|
|
|
--disable-rpath \
|
2016-11-18 19:50:53 +01:00
|
|
|
--with-external-db \
|
|
|
|
--with-gnu-ld \
|
|
|
|
--without-cap \
|
|
|
|
--without-hackingdocs \
|
|
|
|
--without-lua
|
2011-11-14 16:17:14 +01:00
|
|
|
|
2016-11-18 19:50:53 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_ACL),y)
|
|
|
|
RPM_DEPENDENCIES += acl
|
|
|
|
RPM_CONF_OPTS += --with-acl
|
|
|
|
else
|
|
|
|
RPM_CONF_OPTS += --without-acl
|
2015-01-18 20:53:07 +01:00
|
|
|
endif
|
|
|
|
|
2016-11-18 19:50:53 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_LIBNSS),y)
|
|
|
|
RPM_DEPENDENCIES += libnss
|
|
|
|
RPM_CONF_OPTS += --without-beecrypt
|
|
|
|
RPM_CFLAGS += -I$(STAGING_DIR)/usr/include/nss -I$(STAGING_DIR)/usr/include/nspr
|
2011-11-14 16:17:14 +01:00
|
|
|
else
|
2016-11-18 19:50:53 +01:00
|
|
|
RPM_DEPENDENCIES += beecrypt
|
|
|
|
RPM_CONF_OPTS += --with-beecrypt
|
|
|
|
RPM_CFLAGS += -I$(STAGING_DIR)/usr/include/beecrypt
|
2011-11-14 16:17:14 +01:00
|
|
|
endif
|
|
|
|
|
2017-07-03 23:18:07 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_GETTEXT_PROVIDES_LIBINTL),y)
|
2016-11-18 19:50:53 +01:00
|
|
|
RPM_CONF_OPTS += --with-libintl-prefix=$(STAGING_DIR)/usr
|
2011-11-14 16:17:14 +01:00
|
|
|
else
|
2016-11-18 19:50:53 +01:00
|
|
|
RPM_CONF_OPTS += --without-libintl-prefix
|
2011-11-14 16:17:14 +01:00
|
|
|
endif
|
2009-12-25 11:29:22 +01:00
|
|
|
|
2016-11-18 19:50:53 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_LIBARCHIVE),y)
|
|
|
|
RPM_DEPENDENCIES += libarchive
|
|
|
|
RPM_CONF_OPTS += --with-archive
|
2015-01-18 20:53:09 +01:00
|
|
|
else
|
2016-11-18 19:50:53 +01:00
|
|
|
RPM_CONF_OPTS += --without-archive
|
2009-12-25 11:29:22 +01:00
|
|
|
endif
|
|
|
|
|
2016-11-18 19:50:53 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_LIBSELINUX),y)
|
|
|
|
RPM_DEPENDENCIES += libselinux
|
|
|
|
RPM_CONF_OPTS += --with-selinux
|
|
|
|
else
|
|
|
|
RPM_CONF_OPTS += --without-selinux
|
2009-12-25 11:29:22 +01:00
|
|
|
endif
|
2008-04-14 12:56:41 +02:00
|
|
|
|
2016-12-09 00:04:05 +01:00
|
|
|
# For the elfutils and binutils dependencies, there are no
|
|
|
|
# configuration options to explicitly enable/disable them.
|
|
|
|
ifeq ($(BR2_PACKAGE_ELFUTILS),y)
|
|
|
|
RPM_DEPENDENCIES += elfutils
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_BINUTILS),y)
|
|
|
|
RPM_DEPENDENCIES += binutils
|
|
|
|
endif
|
|
|
|
|
2016-11-18 19:50:53 +01:00
|
|
|
# ac_cv_prog_cc_c99: RPM uses non-standard GCC extensions (ex. `asm`).
|
|
|
|
RPM_CONF_ENV = \
|
|
|
|
ac_cv_prog_cc_c99='-std=gnu99' \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS) $(RPM_CFLAGS)"
|
2008-04-14 12:56:41 +02:00
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|