Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/stan/
Date: Tue, 28 Jun 2016 13:59:39
Message-Id: 1467120654.f9077dbbaff67109befd00353e6f45a36db7c581.monsieurp@gentoo
1 commit: f9077dbbaff67109befd00353e6f45a36db7c581
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Jun 27 20:02:38 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 28 13:30:54 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9077dbb
7
8 app-crypt/stan: EAPI 6 bump and minor cleanups.
9
10 Closes: https://github.com/gentoo/gentoo/pull/1773
11
12 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
13
14 app-crypt/stan/stan-0.4.1-r1.ebuild | 26 ++++++++++++++++++++++++++
15 1 file changed, 26 insertions(+)
16
17 diff --git a/app-crypt/stan/stan-0.4.1-r1.ebuild b/app-crypt/stan/stan-0.4.1-r1.ebuild
18 new file mode 100644
19 index 0000000..1cdd441
20 --- /dev/null
21 +++ b/app-crypt/stan/stan-0.4.1-r1.ebuild
22 @@ -0,0 +1,26 @@
23 +# Copyright 1999-2016 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +# $Id$
26 +
27 +EAPI=6
28 +inherit autotools eutils
29 +
30 +DESCRIPTION="Stan analyzes binary streams and calculates statistical information"
31 +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
32 +SRC_URI="mirror://gentoo/${P}.tar.gz"
33 +
34 +LICENSE="BSD"
35 +SLOT="0"
36 +KEYWORDS="amd64 x86"
37 +IUSE=""
38 +
39 +src_prepare() {
40 + eapply -p0 "${FILESDIR}/${P}-errno.patch"
41 + # Update autotools deprecated file name and macro for bug 468750
42 + mv configure.in configure.ac || die "configure rename failed"
43 + sed -i \
44 + -e "s/-O3/${CFLAGS}/" \
45 + -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g" configure.ac || die
46 + eautoreconf
47 + default
48 +}