blob: fab12dd0b8a4abdda9cbfdbd833ed7f1939dd587 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/nss-db/nss-db-2.2.3_pre1.ebuild,v 1.1 2005/02/16 11:04:36 robbat2 Exp $
inherit eutils versionator
MY_PN="${PN/-/_}"
MY_PV="${PV/_}"
MY_P="${MY_PN}-${MY_PV}"
DESCRIPTION="Allows important system files to be stored in a fast database file rather than plain text"
HOMEPAGE="http://sources.redhat.com/glibc/"
SRC_URI="ftp://sources.redhat.com/pub/glibc/releases/${MY_P}.tar.gz
mirror://gentoo/${MY_P}-external.patch.bz2
mirror://gentoo/${MY_P}-dbupgrade.patch.bz2
mirror://gentoo/${MY_P}-dbopen.patch.bz2"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="nls"
# awk and make is NOT an error
# and this didn't compile on BSD libc either
RDEPEND=">=sys-libs/db-4
sys-apps/gawk
sys-devel/make
>=sys-libs/glibc-2.3"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
sys-devel/autoconf
sys-apps/sed"
S="${WORKDIR}/${MY_P}"
db_getver() {
local DBPKG
DBPKG="$(best_version '>=sys-libs/db-4*')"
echo "${DBPKG//sys-libs\/db-}"
}
db_getversym() {
local DBVER DBSYMSUFFIX
[ -n "${1}" ] && DBVER="${1}" || DBVER="$(db_getver)"
DBVER=($(get_version_components "${DBVER}"))
let DBSYMSUFFIX=(${DBVER[0]}*1000)+${DBVER[1]}
echo "_${DBSYMSUFFIX}"
}
src_unpack() {
unpack ${MY_P}.tar.gz
EPATCH_OPTS="-p1 -d ${S}" epatch ${DISTDIR}/${MY_P}-external.patch.bz2
EPATCH_OPTS="-p0 -d ${S}" epatch ${DISTDIR}/${MY_P}-dbupgrade.patch.bz2
EPATCH_OPTS="-p1 -d ${S}" epatch ${DISTDIR}/${MY_P}-dbopen.patch.bz2
# make sure we use the correct version of DB
cd ${S}
DB_PV="$(db_getver)"
DB_SYM="$(db_getversym ${DB_PV})"
DB_PV_MAJORMINOR="$(get_version_component_range 1-2 ${DB_PV})"
sed -i configure.in \
-e "s!db.h!db${DB_PV_MAJORMINOR}/db.h!g" \
-e "s!db, db_version!db-${DB_PV_MAJORMINOR}, db_version${DB_SYM}!g"
# fix ancient broken-ness
for f in po/Makefile.in.in ./intl/Makefile.in; do
egrep -q '^mkinstalldirs = .*case.*esac' ${f} && \
sed -i ${f} \
-e '/^mkinstalldirs = /s,\(mkinstalldirs =\).*,\1 $(top_builddir)/./mkinstalldirs,'
done
# apply stuff
libtoolize --copy --force
export WANT_AUTOMAKE="1.4"
export WANT_AUTOCONF="2.5"
automake --add-missing || die "automake failed"
aclocal || die "aclocal failed"
autoconf || die "autoconf failed"
}
src_compile() {
econf -C --libdir=/lib `use_enable nls` || die
emake || die
}
src_install() {
emake DESTDIR="${D}" install
into /usr
insinto /usr/share/${PN}
doins db-Makefile
exeinto /usr/sbin
doexe ${FILESDIR}/remake-all-db
dodoc ABOUT-NLS AUTHORS COPYING* ChangeLog INSTALL NEWS README THANKS
}
|