public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Thomas Sachau (tommy)" <tommy@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/polarssl: polarssl-1.1.1.ebuild ChangeLog
Date: Fri, 27 Jan 2012 15:49:02 +0000 (UTC)	[thread overview]
Message-ID: <20120127154902.9F1612004B@flycatcher.gentoo.org> (raw)

tommy       12/01/27 15:49:02

  Modified:             ChangeLog
  Added:                polarssl-1.1.1.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.0_alpha84-r1/cvs/Linux x86_64)

Revision  Changes    Path
1.24                 net-libs/polarssl/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	19 Nov 2011 14:45:31 -0000	1.23
+++ ChangeLog	27 Jan 2012 15:49:02 -0000	1.24
@@ -1,6 +1,12 @@
 # ChangeLog for net-libs/polarssl
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v 1.23 2011/11/19 14:45:31 tommy Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v 1.24 2012/01/27 15:49:02 tommy Exp $
+
+*polarssl-1.1.1 (27 Jan 2012)
+
+  27 Jan 2012; Thomas Sachau (Tommy[D]) <tommy@gentoo.org>
+  +polarssl-1.1.1.ebuild:
+  Version bump
 
 *polarssl-1.0.0 (19 Nov 2011)
 



1.1                  net-libs/polarssl/polarssl-1.1.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/polarssl-1.1.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/polarssl-1.1.1.ebuild?rev=1.1&content-type=text/plain

Index: polarssl-1.1.1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/polarssl-1.1.1.ebuild,v 1.1 2012/01/27 15:49:02 tommy Exp $

EAPI=2

inherit eutils

DESCRIPTION="Cryptographic library for embedded systems"
HOMEPAGE="http://polarssl.org/"
SRC_URI="http://polarssl.org/code/download/${P}-gpl.tgz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="examples sse2"

src_prepare() {
#	sed -i '/.SILENT:/d' Makefile */Makefile
	epatch "${FILESDIR}"/${PN}-1.0.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() {
	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
}






             reply	other threads:[~2012-01-27 15:49 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-01-27 15:49 Thomas Sachau (tommy) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2012-04-26 16:11 [gentoo-commits] gentoo-x86 commit in net-libs/polarssl: polarssl-1.1.1.ebuild ChangeLog Alexis Ballier (aballier)
2012-04-26 16:13 Alexis Ballier (aballier)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120127154902.9F1612004B@flycatcher.gentoo.org \
    --to=tommy@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox