summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Sachau <tommy@gentoo.org>2013-10-14 17:01:41 +0000
committerThomas Sachau <tommy@gentoo.org>2013-10-14 17:01:41 +0000
commit3917f396a3765110bb00d40ae825fc0a38ee9191 (patch)
treedee50310fc95bfed3768787d04b8b699609d7437 /net-libs
parentExplicitly call einstalldocs in multilib_src_install_all() to accomodate bug ... (diff)
downloadgentoo-2-3917f396a3765110bb00d40ae825fc0a38ee9191.tar.gz
gentoo-2-3917f396a3765110bb00d40ae825fc0a38ee9191.tar.bz2
gentoo-2-3917f396a3765110bb00d40ae825fc0a38ee9191.zip
Drop old
(Portage version: 2.2.6-r1/cvs/Linux x86_64, signed Manifest commit with key 0x35899067)
Diffstat (limited to 'net-libs')
-rw-r--r--net-libs/polarssl/ChangeLog6
-rw-r--r--net-libs/polarssl/polarssl-1.2.8.ebuild67
2 files changed, 5 insertions, 68 deletions
diff --git a/net-libs/polarssl/ChangeLog b/net-libs/polarssl/ChangeLog
index a1d003e3e811..4deb5386be4a 100644
--- a/net-libs/polarssl/ChangeLog
+++ b/net-libs/polarssl/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-libs/polarssl
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v 1.65 2013/10/14 06:16:58 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v 1.66 2013/10/14 17:01:41 tommy Exp $
+
+ 14 Oct 2013; Thomas Sachau (Tommy[D]) <tommy@gentoo.org>
+ -polarssl-1.2.8.ebuild:
+ Drop old
14 Oct 2013; Agostino Sarubbo <ago@gentoo.org> polarssl-1.3.0.ebuild:
Stable for ppc, wrt bug #487170
diff --git a/net-libs/polarssl/polarssl-1.2.8.ebuild b/net-libs/polarssl/polarssl-1.2.8.ebuild
deleted file mode 100644
index 446c1b159c53..000000000000
--- a/net-libs/polarssl/polarssl-1.2.8.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/polarssl-1.2.8.ebuild,v 1.10 2013/08/28 12:10:23 ago Exp $
-
-EAPI=2
-
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="Cryptographic library for embedded systems"
-HOMEPAGE="http://polarssl.org/"
-SRC_URI="http://polarssl.org/download/${P}-gpl.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm hppa ppc ppc64 s390 sparc x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="examples sse2"
-
-src_prepare() {
- sed -i '/.SILENT:/d' Makefile */Makefile
- epatch "${FILESDIR}"/${PN}-1.2.0-makefile.patch
- cd library
- if use sse2 ; then
- sed -i '15iCFLAGS += -DHAVE_SSE2 -fPIC' Makefile
- else
- sed -i '15iCFLAGS += -fPIC' Makefile
- fi
-}
-
-src_compile() {
- tc-export CC AR
- emake -C library libpolarssl.so || die "emake failed"
-
- if use examples ; then
- emake -C programs all || die "emake failed"
- fi
- ln -s libpolarssl.so library/libpolarssl.so.0
-}
-
-src_test() {
- cd programs
- emake test/selftest || die "emake selftest failed"
- LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:../library" ./test/selftest || die "selftest failed"
- cd "${S}"
- LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:../library" emake check || die
-}
-
-src_install() {
- insinto /usr/include/polarssl
- doins include/polarssl/*.h || die
- dolib.so library/libpolarssl.so || die
- ln -s libpolarssl.so "${D}"usr/$(get_libdir)/libpolarssl.so.0
- dolib.a library/libpolarssl.a || die
-
- if use examples ; then
- for p in programs/*/* ; do
- if [[ -x "${p}" && ! -d "${p}" ]] ; then
- f=polarssl_`basename "${p}"`
- newbin "${p}" "${f}" || die
- fi
- done
- for e in aes hash pkey ssl test ; do
- docinto "${e}"
- dodoc programs/"${e}"/*.c || die
- dodoc programs/"${e}"/*.txt || die
- done
- fi
-}