diff options
author | Sandro Bonazzola <sanchan@gentoo.org> | 2007-01-22 20:12:17 +0000 |
---|---|---|
committer | Sandro Bonazzola <sanchan@gentoo.org> | 2007-01-22 20:12:17 +0000 |
commit | 85762a534bbab95cae488c5005447e2ec10cf160 (patch) | |
tree | 0115c90419bbfc695c1798d1992672c1913eb34c /dev-libs/beecrypt/beecrypt-4.1.2-r2.ebuild | |
parent | fixing sandbox violation (bug #163104) (diff) | |
download | gentoo-2-85762a534bbab95cae488c5005447e2ec10cf160.tar.gz gentoo-2-85762a534bbab95cae488c5005447e2ec10cf160.tar.bz2 gentoo-2-85762a534bbab95cae488c5005447e2ec10cf160.zip |
New doc use flag for doxygen api documentation. Including a patch from Miloslav Trmac <mitr@redhat.com> from Fedora beecrypt rpm: fix b64encode() for data starting with NUL. Removed obsolete ebuild. Waiting mips stabilization for removing latest 3.x series ebuild.
(Portage version: 2.1.2-r2)
Diffstat (limited to 'dev-libs/beecrypt/beecrypt-4.1.2-r2.ebuild')
-rw-r--r-- | dev-libs/beecrypt/beecrypt-4.1.2-r2.ebuild | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/dev-libs/beecrypt/beecrypt-4.1.2-r2.ebuild b/dev-libs/beecrypt/beecrypt-4.1.2-r2.ebuild new file mode 100644 index 000000000000..061ca2256792 --- /dev/null +++ b/dev-libs/beecrypt/beecrypt-4.1.2-r2.ebuild @@ -0,0 +1,79 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/beecrypt/beecrypt-4.1.2-r2.ebuild,v 1.1 2007/01/22 20:12:17 sanchan Exp $ + +inherit flag-o-matic eutils multilib autotools java-pkg-opt-2 + +DESCRIPTION="general-purpose cryptography library" +HOMEPAGE="http://sourceforge.net/projects/beecrypt" +SRC_URI="mirror://sourceforge/beecrypt/${P}.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="java nocxx python threads doc" + +COMMONDEPEND="python? ( >=dev-lang/python-2.2 ) + !<app-arch/rpm-4.2.1" + +DEPEND="${COMMONDEPEND} + java? ( >=virtual/jdk-1.4 ) + doc? ( app-doc/doxygen + virtual/tetex )" + +RDEPEND="${COMMONDEPEND} + java? ( >=virtual/jre-1.4 )" + +pkg_setup() { + java-pkg-opt-2_pkg_setup +} + +src_unpack() { + unpack ${A} + cd "${S}" + # Set correct python libdir on multilib systems + sed -i -e 's:get_python_lib():get_python_lib(1,0):' \ + configure.ac || die "sed failed" + + # upstream patches from CVS + epatch "${FILESDIR}/${P}-python-Makefile-am.patch" + epatch "${FILESDIR}/${P}-python-debug-py-c.patch" + epatch "${FILESDIR}/${P}-build.patch" + epatch "${FILESDIR}/${P}-gcc4.patch" + epatch "${FILESDIR}/${P}-threads.patch" + #Patch from Fedora rpm, Miloslav Trmac <mitr@redhat.com> + epatch "${FILESDIR}/${P}-base64.patch" + eautoreconf +} + +src_compile() { + local myarch=$(get-flag march) + [[ -z ${myarch} ]] && myarch=${CHOST%%-*} + [[ ${myarch} == "athlon64" || ${myarch} == "k8" || ${myarch} == "opteron" || ${myarch} == "athlon-fx" ]] && \ + [[ ${CHOST%%-*} != "x86_64" ]] && myarch=${CHOST%%-*} + econf \ + $(use_enable threads) \ + $(use_with !nocxx cplusplus) \ + $(use_with java) \ + $(use_with python) \ + --with-arch=${myarch} \ + --libdir=/usr/$(get_libdir) \ + || die + emake || die "emake failed" + use doc && doxygen +} + +src_test() { + export BEECRYPT_CONF_FILE=${T}/beecrypt-test.conf + echo provider.1=${S}/c++/provider/.libs/base.so > ${BEECRYPT_CONF_FILE} + make check || die "self test failed" + make bench || die "self benchmark test failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + # Not needed + rm -f "${D}"/usr/$(get_libdir)/python*/site-packages/_bc.*a + dodoc BUGS README BENCHMARKS NEWS || die "dodoc failed" + use doc && dohtml -r docs/html/. || die "dohtml failed" +} |