blob: 9c58f66f5e25eb24da13cd3a4bb50fa1cfbce822 (
plain)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
# Created by: Greg Lewis <glewis@FreeBSD.org>
# $FreeBSD$
PORTNAME= rpm
PORTVERSION= 5.2.1
PORTREVISION= 6
CATEGORIES= archivers
MASTER_SITES= http://rpm5.org/files/rpm/rpm-${PORTVERSION:R}/
PKGNAMESUFFIX= 5
MAINTAINER= afb@rpm5.org
COMMENT= The RPM Package Manager
BROKEN= Does not package
LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/databases/sqlite3 \
libpopt.so:${PORTSDIR}/devel/popt \
libbeecrypt.so:${PORTSDIR}/security/beecrypt \
libneon.so:${PORTSDIR}/www/neon29 \
libmagic.so:${PORTSDIR}/sysutils/file \
libxar.so:${PORTSDIR}/archivers/xar \
libpcre.so:${PORTSDIR}/devel/pcre
BUILD_DEPENDS= gsed:${PORTSDIR}/textproc/gsed \
${LOCALBASE}/lib/libuuid.a:${PORTSDIR}/misc/ossp-uuid \
bash:${PORTSDIR}/shells/bash
SH= ${LOCALBASE}/bin/bash
OPTIONS_DEFINE= PERL PYTHON LUA DOCS
OPTIONS_DEFAULT= PYTHON LUA
DB_VERSION?= 47
USE_BDB= ${DB_VERSION}
USE_AUTOTOOLS= libtool
LIBTOOLFILES= configure db3/configure db/dist/configure \
file/configure xar/configure
CONFIGURE_ARGS= --without-js
USES= gmake perl5 shebangfix
SHEBANG_FILES= scripts/*
USE_PERL5= build
USE_LDCONFIG= yes
CONFLICTS= rpm-3.* rpm-4.* rpm4-*
OPTIONS_SUB= yes
LUA_USES= lua:5.1
LUA_BUILD_DEPENDS= ${LOCALBASE}/lib/libsyck.a:${PORTSDIR}/textproc/syck
LUA_CPPFLAGS= -I${LUA_INCDIR}
LUA_LDFLAGS= -L${LUA_LIBDIR}
LUA_CONFIGURE_ON= --with-lua=external --with-syck=external
LUA_CONFIGURE_OFF= --without-lua --without-syck
PERL_CONFIGURE_WITH= perl
PERL_USE= PERL5=run
PERL_CONFIGURE_ENV= __PERL=${PERL}
PYTHON_USE= PYTHON=yes
PYTHON_CONFIGURE_ON= --with-python=${PYTHON_VER}
PYTHON_CONFIGURE_OFF= --without-python
PYTHON_CONFIGURE_ENV= __PYTHON=${PYTHON_CMD}
PYTHON_CPPFLAGS= -I${PYTHON_INCLUDEDIR}
PYTHON_LDFLAGS= -L${PYTHON_LIBDIR}
NLS_USES= gettext iconv
NLS_CONFIGURE_ENABLE= nls
DOCS_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen \
dot:${PORTSDIR}/graphics/graphviz \
${LOCALBASE}/lib/X11/fonts/freefont-ttf/FreeSans.ttf:${PORTSDIR}/x11-fonts/freefont-ttf
DOCS_CONFIGURE_WITH= apidocs
PORTDOCS= *
CPPFLAGS+= -I${BDB_INCLUDE_DIR} -I${LOCALBASE}/include -I${LOCALBASE}/include/xar
LDFLAGS+= -L${BDB_LIB_DIR} -L${LOCALBASE}/lib
CONFIGURE_ARGS+=--with-db=external --with-bugreport="${MAINTAINER}" \
--with-sqlite=external --with-dbabi=db \
--with-zlib=external \
--with-file=external \
--with-xar=external \
--with-xz=external \
--with-pcre=external \
--with-uuid=external \
--program-prefix="" \
--sysconfdir=${PREFIX}/etc \
--with-path-cfg=${PREFIX}/etc/rpm \
--with-path-magic=${LOCALBASE}/share/file/magic
MAN3PREFIX?= ${PREFIX}/lib/perl5/${PERL_VER}
.include <bsd.port.options.mk>
post-patch::
@${REINPLACE_CMD} -E -e \
's:\$$\(libdir\)/pkgconfig:${PREFIX}/libdata/pkgconfig:' \
${WRKSRC}/scripts/Makefile.am ${WRKSRC}/scripts/Makefile.in
@${REINPLACE_CMD} -e "s:/bin/sh:/usr/bin/env bash:" \
${WRKSRC}/scripts/gendiff
post-configure:
.if ${PORT_OPTIONS:MPERL}
@${REINPLACE_CMD} -e 's/ doc_(perl|site|\$$\(INSTALLDIRS\))_install$$//' ${CONFIGURE_WRKSRC}/perl/Makefile
.endif
@echo "DOT_FONTPATH = ${LOCALBASE}/lib/X11/fonts/freefont-ttf" >> ${WRKSRC}/Doxyfile
.if ${PORT_OPTIONS:MDOCS}
post-build:
${MAKE} -C ${WRKSRC} apidocs
.endif
post-install:
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${STAGEDIR}${DOCSDIR}/apidocs/html
cd ${WRKSRC}/apidocs/html && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/apidocs/html/
.endif
.include <bsd.port.mk>
|