Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/gperiodic/
Date: Sun, 20 Dec 2015 16:36:00
Message-Id: 1450629342.c200a718283ffeb417dfa9c5755250b2f1770b31.jlec@gentoo
1 commit: c200a718283ffeb417dfa9c5755250b2f1770b31
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 20 16:11:27 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 20 16:35:42 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c200a718
7
8 sci-chemistry/gperiodic: Clean old
9
10 Package-Manager: portage-2.2.26
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 sci-chemistry/gperiodic/gperiodic-2.0.10.ebuild | 52 -------------------------
14 1 file changed, 52 deletions(-)
15
16 diff --git a/sci-chemistry/gperiodic/gperiodic-2.0.10.ebuild b/sci-chemistry/gperiodic/gperiodic-2.0.10.ebuild
17 deleted file mode 100644
18 index 8aff46e..0000000
19 --- a/sci-chemistry/gperiodic/gperiodic-2.0.10.ebuild
20 +++ /dev/null
21 @@ -1,52 +0,0 @@
22 -# Copyright 1999-2012 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -# $Id$
25 -
26 -EAPI=4
27 -
28 -inherit eutils toolchain-funcs
29 -
30 -DESCRIPTION="Periodic table application for Linux"
31 -HOMEPAGE="http://www.frantz.fi/software/gperiodic.php"
32 -SRC_URI="http://www.frantz.fi/software/${P}.tar.gz"
33 -
34 -KEYWORDS="amd64 x86"
35 -SLOT="0"
36 -LICENSE="GPL-2"
37 -IUSE="nls"
38 -
39 -RDEPEND="
40 - sys-libs/ncurses:0
41 - x11-libs/gtk+:2
42 - x11-libs/cairo[X]
43 - nls? ( sys-devel/gettext )"
44 -DEPEND="${RDEPEND}
45 - virtual/pkgconfig"
46 -
47 -src_prepare() {
48 - # The author has removed "unnecessary automake/autoconf setup"
49 -
50 - sed -i -e "s|-DGTK_DISABLE_DEPRECATED|${CFLAGS}|" Makefile || die
51 - sed -i -e "/make clean/d" Makefile || die
52 - sed -i -e "s|CC=gcc|CC=$(tc-getCC)|" Makefile || die
53 - if ! use nls; then
54 - sed -i -e "/make -C po/d" Makefile || die
55 - fi
56 -}
57 -
58 -src_install() {
59 - sed -i -e "s|/usr/bin|${ED}/usr/bin|" Makefile || die
60 - sed -i -e "s|/usr/share|${ED}/usr/share|" Makefile || die
61 - sed -i -e "s|/usr/share|${ED}/usr/share|" po/Makefile || die
62 -
63 - # Create directories - Makefile is quite broken.
64 - dodir \
65 - /usr/bin \
66 - /usr/share/pixmaps \
67 - /usr/share/applications
68 -
69 - default
70 -
71 - # The man page seems to have been removed too.
72 - newdoc po/README README.translation
73 -}