Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/birthday/
Date: Fri, 25 Dec 2015 12:08:11
Message-Id: 1451045284.cf577da0714eb531ae6036fa5fad78eeb2564684.jlec@gentoo
1 commit: cf577da0714eb531ae6036fa5fad78eeb2564684
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 25 12:07:27 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 25 12:08:04 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf577da0
7
8 app-misc/birthday: Bump EAPI
9
10 Package-Manager: portage-2.2.26
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 app-misc/birthday/birthday-1.6.2-r1.ebuild | 32 ++++++++++++++++++++++++++++++
14 1 file changed, 32 insertions(+)
15
16 diff --git a/app-misc/birthday/birthday-1.6.2-r1.ebuild b/app-misc/birthday/birthday-1.6.2-r1.ebuild
17 new file mode 100644
18 index 0000000..dcfe624
19 --- /dev/null
20 +++ b/app-misc/birthday/birthday-1.6.2-r1.ebuild
21 @@ -0,0 +1,32 @@
22 +# Copyright 1999-2015 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +# $Id$
25 +
26 +EAPI=6
27 +
28 +inherit toolchain-funcs
29 +
30 +DESCRIPTION="Displays a list of events happening in the near future"
31 +HOMEPAGE="http://sourceforge.net/projects/birthday/"
32 +SRC_URI="mirror://sourceforge/birthday/${P}.tar.bz2"
33 +
34 +LICENSE="GPL-2"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
37 +IUSE=""
38 +
39 +src_prepare() {
40 + # Don't strip, install in correct share dir and respect CFLAGS
41 + sed \
42 + -e "s:install -s:install:g" -e "s:#SHARE:SHARE:g" -e "s:-O2:${CFLAGS}:g" \
43 + -i Makefile || die
44 + sed \
45 + -e 's:grep -v:grep --binary-files=text -v:g' \
46 + -i runtest.sh || die
47 +
48 + default
49 +}
50 +
51 +src_compile() {
52 + emake CC=$(tc-getCC)
53 +}