diff options
author | Daniel Black <dragonheart@gentoo.org> | 2008-08-30 02:24:00 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2008-08-30 02:24:00 +0000 |
commit | 24e831f984e4f88ebb0bf7d706a917a60aabc667 (patch) | |
tree | f4ae551d60b9e820172b13719e180ac5012f4211 /dev-libs/botan | |
parent | added default values to init script. patch thanks to Dennis Schridde - bug #... (diff) | |
download | gentoo-2-24e831f984e4f88ebb0bf7d706a917a60aabc667.tar.gz gentoo-2-24e831f984e4f88ebb0bf7d706a917a60aabc667.tar.bz2 gentoo-2-24e831f984e4f88ebb0bf7d706a917a60aabc667.zip |
version bump as per bug #235957 thanks to Jack Lloyd
(Portage version: 2.2_rc8/cvs/Linux 2.6.22-vs2.2.0.7-gentoo x86_64)
Diffstat (limited to 'dev-libs/botan')
-rw-r--r-- | dev-libs/botan/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/botan/botan-1.6.5.ebuild | 87 |
2 files changed, 93 insertions, 1 deletions
diff --git a/dev-libs/botan/ChangeLog b/dev-libs/botan/ChangeLog index 494c82be2ee3..cf33bbe6ec04 100644 --- a/dev-libs/botan/ChangeLog +++ b/dev-libs/botan/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/botan # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v 1.32 2008/06/18 08:14:29 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v 1.33 2008/08/30 02:24:00 dragonheart Exp $ + +*botan-1.6.5 (30 Aug 2008) + + 30 Aug 2008; Daniel Black <dragonheart@gentoo.org> +botan-1.6.5.ebuild: + version bump as per bug #235957 thanks to Jack Lloyd 18 Jun 2008; Daniel Black <dragonheart@gentoo.org> files/botan-1.6.1-gcc-4.2.patch, +files/botan-1.6.1-gcc-4.3.patch, diff --git a/dev-libs/botan/botan-1.6.5.ebuild b/dev-libs/botan/botan-1.6.5.ebuild new file mode 100644 index 000000000000..f099ddd31c52 --- /dev/null +++ b/dev-libs/botan/botan-1.6.5.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/botan-1.6.5.ebuild,v 1.1 2008/08/30 02:24:00 dragonheart Exp $ + +inherit eutils multilib + +MY_PN="Botan" +MY_P="${MY_PN}-${PV}" +DESCRIPTION="A C++ crypto library" +HOMEPAGE="http://botan.randombit.net/" +SRC_URI="http://files.randombit.net/botan/archive/v1.6/${MY_P}.tgz" + +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +SLOT="0" +LICENSE="BSD" +IUSE="bzip2 gmp ssl zlib" + +S="${WORKDIR}/${MY_P}" + +RDEPEND="bzip2? ( >=app-arch/bzip2-1.0.5 ) + zlib? ( >=sys-libs/zlib-1.2.3 ) + gmp? ( >=dev-libs/gmp-4.2.2 ) + ssl? ( >=dev-libs/openssl-0.9.8g )" + +# configure.pl requires Getopt::Long, File::Spec, and File::Copy; +# all seem included in dev-lang/perl ATM. +DEPEND="${RDEPEND} + dev-lang/perl" + +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,tm_posix,mux_pthr" + + if useq bzip2; 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. + # documention says sparc though not enables because of + # http://bugs.gentoo.org/show_bug.cgi?id=71760#c11 + + if [ "${ARCH}" = "alpha" -o "${ARCH}" = "amd64" ] || \ + [ "${ARCH}" = "x86" -a "${CHOST:0:4}" != "i386" -a "${CHOST:0:4}" != "i486" ]; then + modules="$modules,tm_hard" + fi + + # If we have assembly code for this machine, use it + if [ "${ARCH}" = "x86" ]; then + modules="$modules,mp_ia32,alg_ia32" + elif [ "${ARCH}" = "amd64" ]; then + modules="$modules,mp_amd64,alg_amd64" + elif [ "${ARCH}" = "alpha" -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}" + elog "Enabling modules: " ${modules} + + # FIXME: We might actually be on *BSD or OS X... + ./configure.pl \ + --noauto \ + --libdir=/$(get_libdir) \ + --modules=$modules \ + gcc-linux-${CHOSTARCH} || + die "configure.pl failed" + emake CXX="$(tc-getCXX)" AR="$(tc-getAR) crs" \ + "LIB_OPT=${CXXFLAGS}" "MACH_OPT=" || die "emake failed" +} + +src_test() { + chmod -R ugo+rX "${S}" + emake CXX="$(tc-getCXX)" 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" +} |