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-misc/birthday/
Date: Sat, 21 Oct 2017 17:31:41
Message-Id: 1508606821.213bc60f7c709528bc8a953c0b34ca28299d2055.monsieurp@gentoo
1 commit: 213bc60f7c709528bc8a953c0b34ca28299d2055
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 21 17:27:01 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 21 17:27:01 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=213bc60f
7
8 app-misc/birthday: clean up old.
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 app-misc/birthday/birthday-1.6.2.ebuild | 34 ---------------------------------
13 1 file changed, 34 deletions(-)
14
15 diff --git a/app-misc/birthday/birthday-1.6.2.ebuild b/app-misc/birthday/birthday-1.6.2.ebuild
16 deleted file mode 100644
17 index cfdfb29b5b2..00000000000
18 --- a/app-misc/birthday/birthday-1.6.2.ebuild
19 +++ /dev/null
20 @@ -1,34 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -inherit toolchain-funcs
25 -
26 -DESCRIPTION="Displays a list of events happening in the near future"
27 -HOMEPAGE="https://sourceforge.net/projects/birthday/"
28 -SRC_URI="mirror://sourceforge/birthday/${P}.tar.bz2"
29 -
30 -LICENSE="GPL-2"
31 -SLOT="0"
32 -KEYWORDS="amd64 ppc ppc64 sparc x86"
33 -IUSE=""
34 -
35 -src_unpack() {
36 - unpack ${A}
37 - cd "${S}"
38 -
39 - # Don't strip, install in correct share dir and respect CFLAGS
40 - sed \
41 - -e "s:install -s:install:g" -e "s:#SHARE:SHARE:g" -e "s:-O2:${CFLAGS}:g" \
42 - -i Makefile || die
43 - sed \
44 - -e 's:grep -v:grep --binary-files=text -v:g' \
45 - -i runtest.sh || die
46 -}
47 -
48 -src_compile() {
49 - emake CC=$(tc-getCC) || die "emake failed"
50 -}
51 -
52 -src_install() {
53 - emake DESTDIR="${D}" install || die "emake install failed"
54 -}