From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 96C551384B4 for ; Sun, 20 Dec 2015 16:36:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 809FD21C037; Sun, 20 Dec 2015 16:35:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1ED8F21C037 for ; Sun, 20 Dec 2015 16:35:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DE65A3406F3 for ; Sun, 20 Dec 2015 16:35:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B8839CEC for ; Sun, 20 Dec 2015 16:35:49 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1450629342.c200a718283ffeb417dfa9c5755250b2f1770b31.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/gperiodic/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-chemistry/gperiodic/gperiodic-2.0.10.ebuild X-VCS-Directories: sci-chemistry/gperiodic/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: c200a718283ffeb417dfa9c5755250b2f1770b31 X-VCS-Branch: master Date: Sun, 20 Dec 2015 16:35:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b37fdd66-e12e-4579-aedb-fc8358f4c653 X-Archives-Hash: e822fa955ce0db45e789a3472801125d commit: c200a718283ffeb417dfa9c5755250b2f1770b31 Author: Justin Lecher gentoo org> AuthorDate: Sun Dec 20 16:11:27 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Dec 20 16:35:42 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c200a718 sci-chemistry/gperiodic: Clean old Package-Manager: portage-2.2.26 Signed-off-by: Justin Lecher gentoo.org> sci-chemistry/gperiodic/gperiodic-2.0.10.ebuild | 52 ------------------------- 1 file changed, 52 deletions(-) diff --git a/sci-chemistry/gperiodic/gperiodic-2.0.10.ebuild b/sci-chemistry/gperiodic/gperiodic-2.0.10.ebuild deleted file mode 100644 index 8aff46e..0000000 --- a/sci-chemistry/gperiodic/gperiodic-2.0.10.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -inherit eutils toolchain-funcs - -DESCRIPTION="Periodic table application for Linux" -HOMEPAGE="http://www.frantz.fi/software/gperiodic.php" -SRC_URI="http://www.frantz.fi/software/${P}.tar.gz" - -KEYWORDS="amd64 x86" -SLOT="0" -LICENSE="GPL-2" -IUSE="nls" - -RDEPEND=" - sys-libs/ncurses:0 - x11-libs/gtk+:2 - x11-libs/cairo[X] - nls? ( sys-devel/gettext )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - # The author has removed "unnecessary automake/autoconf setup" - - sed -i -e "s|-DGTK_DISABLE_DEPRECATED|${CFLAGS}|" Makefile || die - sed -i -e "/make clean/d" Makefile || die - sed -i -e "s|CC=gcc|CC=$(tc-getCC)|" Makefile || die - if ! use nls; then - sed -i -e "/make -C po/d" Makefile || die - fi -} - -src_install() { - sed -i -e "s|/usr/bin|${ED}/usr/bin|" Makefile || die - sed -i -e "s|/usr/share|${ED}/usr/share|" Makefile || die - sed -i -e "s|/usr/share|${ED}/usr/share|" po/Makefile || die - - # Create directories - Makefile is quite broken. - dodir \ - /usr/bin \ - /usr/share/pixmaps \ - /usr/share/applications - - default - - # The man page seems to have been removed too. - newdoc po/README README.translation -}