From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CFC691382C5 for ; Sun, 18 Mar 2018 09:42:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E8A51E07A5; Sun, 18 Mar 2018 09:42:08 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C39F1E07A5 for ; Sun, 18 Mar 2018 09:42:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 971EF335D20 for ; Sun, 18 Mar 2018 09:42:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 864A4268 for ; Sun, 18 Mar 2018 09:42:05 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1521365880.5b8c3415540ebf7e2e6359a3c4c864360221759c.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/sic/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/sic/sic-1.2.ebuild X-VCS-Directories: net-irc/sic/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 5b8c3415540ebf7e2e6359a3c4c864360221759c X-VCS-Branch: master Date: Sun, 18 Mar 2018 09:42:05 +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: 62c944fb-3953-4074-aad8-da29ed11212d X-Archives-Hash: 211de91b937e1051b8b0017cc2a56111 commit: 5b8c3415540ebf7e2e6359a3c4c864360221759c Author: Mikle Kolyada gentoo org> AuthorDate: Sun Mar 18 09:37:52 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sun Mar 18 09:38:00 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b8c3415 net-irc/sic: Drop old Package-Manager: Portage-2.3.24, Repoman-2.3.6 net-irc/sic/sic-1.2.ebuild | 35 ----------------------------------- 1 file changed, 35 deletions(-) diff --git a/net-irc/sic/sic-1.2.ebuild b/net-irc/sic/sic-1.2.ebuild deleted file mode 100644 index 67faf284d4f..00000000000 --- a/net-irc/sic/sic-1.2.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 -inherit toolchain-funcs - -DESCRIPTION="An extremly simple IRC client" -HOMEPAGE="https://tools.suckless.org/sic" -SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86 ~x86-fbsd" -IUSE="" - -src_prepare() { - sed -i \ - -e "s/CFLAGS =/CFLAGS +=/g" \ - -e "s/-Os//" \ - -e "s/LDFLAGS = -s/LDFLAGS +=/" \ - -e "/^LIBS =/d" \ - -e "s/= cc/= $(tc-getCC)/g" \ - config.mk || die "sed failed" - - # enable verbose build - sed -i 's/@${CC}/${CC}/' Makefile || die -} - -src_compile() { - emake CC="$(tc-getCC)" -} - -src_install() { - emake DESTDIR="${D}" PREFIX="/usr" install -}