diff options
author | 2014-04-13 11:03:54 +0000 | |
---|---|---|
committer | 2014-04-13 11:03:54 +0000 | |
commit | 00f88b2ecb50d9fb885c76c1b2d9c34c5bbcb7c8 (patch) | |
tree | 5fab75d5f683084c552806651024ca3ccc99821c /dev-libs/matrixssl/matrixssl-3.2.2.ebuild | |
parent | Version bump wrt #507552 by "slash" (diff) | |
download | historical-00f88b2ecb50d9fb885c76c1b2d9c34c5bbcb7c8.tar.gz historical-00f88b2ecb50d9fb885c76c1b2d9c34c5bbcb7c8.tar.bz2 historical-00f88b2ecb50d9fb885c76c1b2d9c34c5bbcb7c8.zip |
old
Package-Manager: portage-2.2.10/cvs/Linux x86_64
Manifest-Sign-Key: 0x4868F14D
Diffstat (limited to 'dev-libs/matrixssl/matrixssl-3.2.2.ebuild')
-rw-r--r-- | dev-libs/matrixssl/matrixssl-3.2.2.ebuild | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/dev-libs/matrixssl/matrixssl-3.2.2.ebuild b/dev-libs/matrixssl/matrixssl-3.2.2.ebuild deleted file mode 100644 index 8052d2934523..000000000000 --- a/dev-libs/matrixssl/matrixssl-3.2.2.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/matrixssl/matrixssl-3.2.2.ebuild,v 1.2 2012/03/21 06:06:22 ssuominen Exp $ - -EAPI=4 -inherit toolchain-funcs - -MY_P=${P//./-}-open - -DESCRIPTION="embedded SSL implementation" -HOMEPAGE="http://www.matrixssl.org/" -SRC_URI="mirror://gentoo/${MY_P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples static-libs" - -S=${WORKDIR}/${MY_P} - -src_compile() { - local myconf=( - CC="$(tc-getCC)" - STRIP="true" - AR="$(tc-getAR)" - DFLAGS="${CFLAGS}" - ) - - if use static-libs; then - emake "${myconf[@]}" - else - emake lib${PN}.so "${myconf[@]}" - fi -} - -src_install() { - dolib.so libmatrixssl.so - use static-libs && dolib.a libmatrixssl.a - - # API is exposed from matrixsslApi.h and rest is included recursively - insinto /usr/include/matrixssl - doins matrixssl/*.h - - local h1 - for h1 in core crypto; do - insinto /usr/include/matrixssl/${h1} - doins ${h1}/*.h - done - - local h2 - for h2 in digest keyformat math prng pubkey symmetric; do - insinto /usr/include/matrixssl/crypto/${h2} - doins crypto/${h2}/*.h - done - - if use doc; then - insinto /usr/share/doc/${PF}/pdf - doins doc/*.pdf - fi - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins -r apps sampleCerts - fi - - dodoc readme.txt -} |