mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-29 10:18:30 +00:00
5a264e890d
USES= libarchive adds library dependency Approved by: portmgr (blanket)
82 lines
2.3 KiB
Makefile
82 lines
2.3 KiB
Makefile
PORTNAME= rpm
|
|
PORTVERSION= 4.18.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= http://ftp.rpm.org/releases/rpm-${PORTVERSION:R}.x/
|
|
PKGNAMESUFFIX= 4
|
|
|
|
MAINTAINER= rodrigo@FreeBSD.org
|
|
COMMENT= Red Hat Package Manager
|
|
WWW= https://rpm.org/
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libelf.so:devel/elfutils \
|
|
gsed:textproc/gsed
|
|
LIB_DEPENDS= libdb-5.3.so:databases/db5 \
|
|
libelf.so:devel/elfutils \
|
|
libgcrypt.so:security/libgcrypt \
|
|
libnss3.so:security/nss \
|
|
libpopt.so:devel/popt \
|
|
libzstd.so:archivers/zstd
|
|
RUN_DEPENDS= ${LOCALBASE}/lib/libelf.so:devel/elfutils \
|
|
bash:shells/bash \
|
|
gxargs:misc/findutils
|
|
|
|
USES= alias bdb cpe gmake iconv libarchive libtool lua pathfix \
|
|
pkgconfig readline shebangfix sqlite tar:bzip2
|
|
USE_LDCONFIG= yes
|
|
|
|
SHEBANG_FILES= scripts/brp-compress scripts/check-prereqs \
|
|
scripts/check-rpaths-worker scripts/find-lang.sh \
|
|
scripts/fontconfig.prov scripts/ocamldeps.sh scripts/perl.prov \
|
|
scripts/perl.req scripts/pkgconfigdeps.sh \
|
|
scripts/rpm_macros_provides.sh
|
|
GNU_CONFIGURE= yes
|
|
GNU_CONFIGURE_MANPREFIX=${PREFIX}/share
|
|
CONFIGURE_ARGS= --enable-sqlite=yes \
|
|
--localstatedir=/var \
|
|
--sysconfdir=${PREFIX}/etc \
|
|
--with-popt-prefix="${LOCALBASE}" \
|
|
--without-javaglue \
|
|
am_cv_python_version=${PYTHON_VER}${PYTHON_ABIVER}
|
|
CONFIGURE_ENV= LUA_CFLAGS=-I${LUA_INCDIR} \
|
|
LUA_LIBS="-L${LUA_LIBDIR} -llua-${LUA_VER} -lm"
|
|
INSTALL_TARGET= install-strip
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/nspr \
|
|
-I${LOCALBASE}/include/nss/nss -I${BDB_INCLUDE_DIR} \
|
|
-I${LUA_INCDIR}
|
|
LDFLAGS+= -L${LOCALBASE}/lib -L${LOCALBASE}/lib/nss -L${BDB_LIB_DIR} \
|
|
-L${LUA_LIBDIR}
|
|
|
|
CONFLICTS_INSTALL= rpm2cpio # bin/rpm2cpio
|
|
|
|
BINARY_ALIAS= sed=${LOCALBASE}/bin/gsed
|
|
|
|
PLIST_SUB= OPSYS=${OPSYS:tl} \
|
|
VERSION=${PORTVERSION}
|
|
|
|
OPTIONS_DEFINE= NLS PLUGINS PYTHON
|
|
OPTIONS_DEFAULT= PYTHON
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_USES= gettext
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
NLS_LIBS= -lintl
|
|
|
|
PLUGINS_LIB_DEPENDS= libdbus-1.so:devel/dbus
|
|
PLUGINS_CONFIGURE_ENABLE= plugins
|
|
PYTHON_USES= python
|
|
PYTHON_CONFIGURE_ENABLE= python
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's/\<xargs\>/gxargs/g' \
|
|
${WRKSRC}/scripts/brp-strip-static-archive \
|
|
${WRKSRC}/scripts/check-buildroot \
|
|
${WRKSRC}/scripts/check-rpaths \
|
|
${WRKSRC}/scripts/vpkg-provides.sh
|
|
|
|
.include <bsd.port.mk>
|