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 9D403139085 for ; Mon, 26 Dec 2016 17:25:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D86E3E0C01; Mon, 26 Dec 2016 17:25:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 B2BE1E0C01 for ; Mon, 26 Dec 2016 17:25:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 65B7B340988 for ; Mon, 26 Dec 2016 17:25:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CE8AE24C5 for ; Mon, 26 Dec 2016 17:25:31 +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: <1482773130.52b2907ce114a4023217194f71d68eea7c500d29.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/sprop/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/sprop/sprop-0.1-r1.ebuild X-VCS-Directories: x11-misc/sprop/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 52b2907ce114a4023217194f71d68eea7c500d29 X-VCS-Branch: master Date: Mon, 26 Dec 2016 17:25:31 +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: 8507542a-b692-4015-9a3b-2fe9e058773c X-Archives-Hash: fae638646b769a439c5758b83d9e9c58 commit: 52b2907ce114a4023217194f71d68eea7c500d29 Author: Jeroen Roovers gentoo org> AuthorDate: Mon Dec 26 17:25:13 2016 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Mon Dec 26 17:25:30 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52b2907c x11-misc/sprop: Fix version in man page. Package-Manager: Portage-2.3.3, Repoman-2.3.1 x11-misc/sprop/sprop-0.1-r1.ebuild | 48 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/x11-misc/sprop/sprop-0.1-r1.ebuild b/x11-misc/sprop/sprop-0.1-r1.ebuild new file mode 100644 index 00000000..f8d218e --- /dev/null +++ b/x11-misc/sprop/sprop-0.1-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit toolchain-funcs + +DESCRIPTION="a simple X property utility" +HOMEPAGE="http://tools.suckless.org/x/sprop" +SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + x11-libs/libX11 +" +DEPEND=" + ${RDEPEND} + x11-proto/xproto +" +src_prepare() { + sed -i \ + -e '/^CC/d' \ + -e '/^CFLAGS/s| =| +=|;s| -Os||g' \ + -e '/^LDFLAGS/s|= -s|+=|g' \ + config.mk || die + + sed -i \ + -e 's|@${CC}|$(CC)|g' \ + Makefile || die + + sed -i \ + -e "s|VERSION|${PV}|g" \ + ${PN}.1 || die + + default + + tc-export CC +} + +src_compile() { emake sprop; } + +src_install() { + dobin ${PN} + doman ${PN}.1 +}