aboutsummaryrefslogtreecommitdiffstats
path: root/archivers/rpm4/Makefile
blob: c6fedfe8bcbf72ca80a89812631ef51bb8ee2a4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Created by: Greg Lewis <glewis@FreeBSD.org>
# $FreeBSD$

PORTNAME=   rpm
PORTVERSION=    4.12.0.1
PORTREVISION=   4
CATEGORIES= archivers
MASTER_SITES=   http://rpm.org/releases/rpm-${PORTVERSION:R:R}.x/
PKGNAMESUFFIX=  4

MAINTAINER= ports@FreeBSD.org
COMMENT=    Red Hat Package Manager

LIB_DEPENDS=    libpopt.so:devel/popt \
        libnss3.so:security/nss
BUILD_DEPENDS=  ${LOCALBASE}/bin/gsed:textproc/gsed

USES=       alias bdb gmake libarchive libtool lua:51 pathfix pkgconfig \
        shebangfix tar:bzip2
INVALID_BDB_VER=51
GNU_CONFIGURE=  yes
USE_LDCONFIG=   yes
SHEBANG_FILES=  scripts/brp-python-bytecompile scripts/check-prereqs \
        scripts/check-rpaths-worker scripts/pythondeps.sh \
        scripts/mono-find-requires scripts/mono-find-provides \
        scripts/pkgconfigdeps.sh scripts/fontconfig.prov \
        scripts/rpmdb_loadcvt \
        scripts/perl.prov scripts/perl.req scripts/perldeps.pl \
        scripts/osgideps.pl scripts/tcl.req \
        python/rpm/transaction.py
CONFIGURE_ARGS= --with-external-db \
        --without-db \
        --with-popt-prefix="${LOCALBASE}" \
        --sysconfdir=${PREFIX}/etc \
        --localstatedir=/var \
        --without-javaglue
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}

PLIST_SUB=  VERSION=${PORTVERSION} \
        OPSYS=${OPSYS:tl}

PORTDOCS=   *

OPTIONS_DEFINE= PYTHON PLUGINS NLS DOCS
OPTIONS_DEFAULT=PYTHON PLUGINS
OPTIONS_SUB=    yes

PYTHON_CONFIGURE_ENABLE=python
PYTHON_USES=        python:2.7

NLS_CONFIGURE_ENABLE=   nls
NLS_USES=       gettext
NLS_LIBS=       -lintl

PLUGINS_CONFIGURE_ENABLE=plugins
PLUGINS_LIB_DEPENDS=    libdbus-1.so:devel/dbus

post-patch:
    @${REINPLACE_CMD} -e 's:\.\./\.\./bin/::' ${WRKSRC}/Makefile.in
    @${REINPLACE_CMD} -e 's/(hpux)/& || defined(__FreeBSD__)/' \
        ${WRKSRC}/misc/fts.?
    @${REINPLACE_CMD} -e 's/ __GLIBC__.*/& || defined(__FreeBSD__)/' \
        ${WRKSRC}/system.h

post-install-DOCS-on:
    @${MKDIR} ${STAGEDIR}${DOCSDIR}
    cd ${WRKSRC}/doc && ${COPYTREE_SHARE} librpm/html ${STAGEDIR}${DOCSDIR}

.include <bsd.port.mk>