diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-07-15 21:44:45 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-07-15 21:44:45 +0000 |
commit | 6fb9e670243e30613c59d9a7e00a53cf7f7ebccd (patch) | |
tree | 45b472695a94b9dbff0b450fd2beb1d988bba9de /dev-libs/botan | |
parent | stable on ppc, bug 276432 (diff) | |
download | gentoo-2-6fb9e670243e30613c59d9a7e00a53cf7f7ebccd.tar.gz gentoo-2-6fb9e670243e30613c59d9a7e00a53cf7f7ebccd.tar.bz2 gentoo-2-6fb9e670243e30613c59d9a7e00a53cf7f7ebccd.zip |
Version bump (bug #277453).
(Portage version: 13827-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/botan')
-rw-r--r-- | dev-libs/botan/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/botan/botan-1.8.4.ebuild | 81 |
2 files changed, 88 insertions, 1 deletions
diff --git a/dev-libs/botan/ChangeLog b/dev-libs/botan/ChangeLog index 4dec592b286f..a250c1849253 100644 --- a/dev-libs/botan/ChangeLog +++ b/dev-libs/botan/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/botan # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v 1.39 2009/07/09 07:59:10 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v 1.40 2009/07/15 21:44:45 arfrever Exp $ + +*botan-1.8.4 (15 Jul 2009) + + 15 Jul 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +botan-1.8.4.ebuild: + Version bump (bug #277453). 09 Jul 2009; Christian Faulhammer <fauli@gentoo.org> botan-1.8.2.ebuild: stable x86, bug 277122 diff --git a/dev-libs/botan/botan-1.8.4.ebuild b/dev-libs/botan/botan-1.8.4.ebuild new file mode 100644 index 000000000000..33fb891ec371 --- /dev/null +++ b/dev-libs/botan/botan-1.8.4.ebuild @@ -0,0 +1,81 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/botan-1.8.4.ebuild,v 1.1 2009/07/15 21:44:45 arfrever Exp $ + +EAPI="2" + +inherit multilib toolchain-funcs + +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/${MY_P}.tgz" + +KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86" +SLOT="0" +LICENSE="BSD" +IUSE="bzip2 gmp ssl threads 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 )" + +DEPEND="${RDEPEND} + >=dev-lang/python-2.5.0" + +src_configure() { + local disable_modules="proc_walk,unix_procs,cpu_counter" + + if ! useq threads; then + disable_modules="${disable_modules},pthreads" + fi + + # Enable v9 instructions for sparc64 + if [[ "${PROFILE_ARCH}" = "sparc64" ]]; then + CHOSTARCH="sparc32-v9" + else + CHOSTARCH="${CHOST%%-*}" + fi + + cd "${S}" + elog "Disabling modules: ${disable_modules}" + + # FIXME: We might actually be on *BSD or OS X... + ./configure.py \ + --prefix="${D}/usr" \ + --libdir=/$(get_libdir) \ + --docdir=/share/doc/ \ + --cc=gcc \ + --os=linux \ + --cpu=${CHOSTARCH} \ + --with-endian="$(tc-endian)" \ + --with-tr1=system \ + $(use_with bzip2) \ + $(use_with gmp gnump) \ + $(use_with ssl openssl) \ + $(use_with zlib) \ + --disable-modules=${disable_modules} \ + || die "configure.py failed" +} + +src_compile() { + 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_OPT="${CXXFLAGS}" check || die "emake check failed" + LD_LIBRARY_PATH="${S}" ./check --validate || die "validation tests failed" +} + +src_install() { + emake install || die "emake install failed" + sed -i -e "s:${D}::g" \ + "${D}/usr/bin/botan-config" \ + "${D}/usr/$(get_libdir)/pkgconfig/botan-1.8.pc" || die "sed failed" + mv "${D}/usr/share/doc/Botan-${PV}" "${D}/usr/share/doc/${PF}" || die "could not rename directory" +} |