aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
53 lines
1.3 KiB
Makefile
53 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# rpm
|
|
#
|
|
################################################################################
|
|
|
|
RPM_VERSION_MAJOR = 5.2
|
|
RPM_VERSION = $(RPM_VERSION_MAJOR).0
|
|
RPM_SITE = http://rpm5.org/files/rpm/rpm-$(RPM_VERSION_MAJOR)
|
|
RPM_DEPENDENCIES = zlib beecrypt neon popt
|
|
RPM_LICENSE = LGPLv2.1
|
|
RPM_LICENSE_FILES = COPYING.LIB
|
|
|
|
RPM_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include/beecrypt -I$(STAGING_DIR)/usr/include/neon -DHAVE_MUTEX_THREAD_ONLY" \
|
|
ac_cv_va_copy=yes
|
|
|
|
RPM_CONF_OPTS = --disable-build-versionscript --disable-rpath \
|
|
--without-selinux \
|
|
--without-python --without-perl \
|
|
--with-openssl=external \
|
|
--with-zlib=$(STAGING_DIR) \
|
|
--with-libbeecrypt=$(STAGING_DIR) \
|
|
--with-popt=$(STAGING_DIR)
|
|
|
|
ifeq ($(BR2_PACKAGE_PCRE),y)
|
|
RPM_DEPENDENCIES += pcre
|
|
RPM_CONF_OPTS += --with-pcre=external
|
|
else
|
|
RPM_CONF_OPTS += --with-pcre=no
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_FILE),y)
|
|
RPM_DEPENDENCIES += file
|
|
RPM_CONF_OPTS += --with-file=external
|
|
else
|
|
RPM_CONF_OPTS += --with-file=no
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_RPM_XZ_PAYLOADS),y)
|
|
RPM_CONF_OPTS += --with-xz
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_RPM_BZIP2_PAYLOADS),y)
|
|
RPM_CONF_OPTS += --with-bzip2
|
|
RPM_DEPENDENCIES += bzip2
|
|
endif
|
|
|
|
RPM_MAKE = $(MAKE1)
|
|
|
|
RPM_INSTALL_TARGET_OPTS = DESTDIR=$(TARGET_DIR) program_transform_name= install
|
|
|
|
$(eval $(autotools-package))
|