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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/botan-1.4.4.ebuild,v 1.3 2004/12/09 14:16:52 gustavoz Exp $
# Comments/fixes to lloyd@randombit.net (author)
inherit eutils
DESCRIPTION="A C++ crypto library"
HOMEPAGE="http://botan.randombit.net/"
SRC_URI="http://botan.randombit.net/files/Botan-${PV}.tgz"
KEYWORDS="x86 ppc sparc"
SLOT="0"
LICENSE="BSD"
IUSE="bzlib zlib gmp ssl debug"
S="${WORKDIR}/Botan-${PV}"
# FIXME: libstdc++ here?
RDEPEND="virtual/libc
bzlib? ( >=app-arch/bzip2-1.0.1 )
zlib? ( >=sys-libs/zlib-1.1.4 )
gmp? ( >=dev-libs/gmp-4.1.2 )
ssl? ( >=dev-libs/openssl-0.9.7d )"
# configure.pl requires DirHandle, Getopt::Long, File::Spec, and File::Copy;
# all seem included in dev-lang/perl ATM.
DEPEND="${RDEPEND}
dev-lang/perl"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gcc34.patch || die "patch failed"
}
src_compile() {
# Modules that should work under any semi-recent Unix
local modules="alloc_mmap,es_egd,es_ftw,es_unix,fd_unix,ml_unix,tm_unix,mux_pthr"
if useq bzlib; then modules="$modules,comp_bzip2"; fi
if useq zlib; then modules="$modules,comp_zlib"; fi
if useq gmp; then modules="$modules,eng_gmp"; fi
if useq ssl; then modules="$modules,eng_ossl"; fi
# This is also supported on i586+ - hope this is correct.
if [ ${ARCH} = 'alpha' -o ${ARCH} = 'amd64' ] || \
[ ${ARCH} = 'x86' -a ${CHOST:0:4} != "i386" -a ${CHOST:0:4} != "i486" ]; then
modules="$modules,tm_hard"
fi
# Also works on mips64
if [ "${ARCH}" = 'alpha' -o "${ARCH}" = 'amd64' -o \
"${ARCH}" = 'ia64' -o "${ARCH}" = 'ppc64' -o "${PROFILE_ARCH}" = 'mips64' ]; then
modules="$modules,mp_asm64"
fi
# Enable v9 instructions for sparc64
if [ ${PROFILE_ARCH} = 'sparc64' ]; then
CHOSTARCH='sparc32-v9'
else
CHOSTARCH=$(echo ${CHOST} | cut -d - -f 1)
fi
cd ${S}
einfo "Enabling modules: " ${modules}
# FIXME: We might actually be on *BSD or OS X...
./configure.pl --noauto gcc-linux-$CHOSTARCH --modules=$modules ||
die "configure.pl failed"
emake "LIB_OPT=${CXXFLAGS}" "MACH_OPT=" || die "emake failed"
}
src_test() {
chmod -R ugo+rX ${S}
emake check || die "emake check failed"
env LD_LIBRARY_PATH=${S} ./check --validate || die "validation tests failed"
}
src_install() {
make INSTALLROOT="${D}/usr" install || die "make install failed"
}
|