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 363F4139695 for ; Sat, 29 Apr 2017 06:55:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91204E0C31; Sat, 29 Apr 2017 06:55:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6BBB9E0C31 for ; Sat, 29 Apr 2017 06:55:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 A1399341733 for ; Sat, 29 Apr 2017 06:55:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4A8977434 for ; Sat, 29 Apr 2017 06:55:50 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1493448893.13e6446ef69089698210c6290b07394e4544617d.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/sselp/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/sselp/sselp-0.2.ebuild X-VCS-Directories: x11-misc/sselp/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 13e6446ef69089698210c6290b07394e4544617d X-VCS-Branch: master Date: Sat, 29 Apr 2017 06:55:50 +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: dc8d106a-e6b6-489b-ad94-cf2fd8603e42 X-Archives-Hash: 00ac1da8461dd23537e8b9f158defda9 commit: 13e6446ef69089698210c6290b07394e4544617d Author: Jeroen Roovers gentoo org> AuthorDate: Sat Apr 29 06:54:53 2017 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sat Apr 29 06:54:53 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13e6446e x11-misc/sselp: Old. Package-Manager: Portage-2.3.5, Repoman-2.3.2 x11-misc/sselp/sselp-0.2.ebuild | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/x11-misc/sselp/sselp-0.2.ebuild b/x11-misc/sselp/sselp-0.2.ebuild deleted file mode 100644 index 6f267e60a59..00000000000 --- a/x11-misc/sselp/sselp-0.2.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -inherit toolchain-funcs - -DESCRIPTION="Simple X selection printer" -HOMEPAGE="http://tools.suckless.org/x/sselp" -SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 hppa ~ppc ~ppc64 x86" - -DEPEND="x11-libs/libX11" -RDEPEND="${DEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - - sed -i \ - -e "s|^CFLAGS = -std=c99 -pedantic -Wall -Os|CFLAGS += -std=c99 -pedantic -Wall|" \ - -e "s|^LDFLAGS = -s|LDFLAGS +=|" \ - -e "s|^CC = cc|CC = $(tc-getCC)|" \ - config.mk || die "sed failed" -} - -src_install() { - emake DESTDIR="${D}" PREFIX="/usr" install || die "emake install failed" - dodoc README -}