From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-919534-garchives=archives.gentoo.org@lists.gentoo.org>
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 7B29B139085
	for <garchives@archives.gentoo.org>; Tue, 27 Dec 2016 00:05:51 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id D6BDCE0C56;
	Tue, 27 Dec 2016 00:05:49 +0000 (UTC)
Received: from smtp.gentoo.org (dev.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 B5324E0C50
	for <gentoo-commits@lists.gentoo.org>; Tue, 27 Dec 2016 00:05:49 +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 8023D341134
	for <gentoo-commits@lists.gentoo.org>; Tue, 27 Dec 2016 00:05:48 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C76824ED
	for <gentoo-commits@lists.gentoo.org>; Tue, 27 Dec 2016 00:05:46 +0000 (UTC)
From: "Patrice Clement" <monsieurp@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" <monsieurp@gentoo.org>
Message-ID: <1482797136.48ef9cb15b025ca7a99a17fda620f949099af4a3.monsieurp@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/utimer/
X-VCS-Repository: repo/gentoo
X-VCS-Files: app-misc/utimer/utimer-0.4-r1.ebuild
X-VCS-Directories: app-misc/utimer/
X-VCS-Committer: monsieurp
X-VCS-Committer-Name: Patrice Clement
X-VCS-Revision: 48ef9cb15b025ca7a99a17fda620f949099af4a3
X-VCS-Branch: master
Date: Tue, 27 Dec 2016 00:05:46 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: f03984ff-03ad-467b-a924-3a24892660cb
X-Archives-Hash: 73d4bf6c6c5a55acb64a4630203a8932

commit:     48ef9cb15b025ca7a99a17fda620f949099af4a3
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 26 20:15:35 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Tue Dec 27 00:05:36 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48ef9cb1

app-misc/utimer: EAPI 6 bump.

Package-Manager: portage-2.3.0

 app-misc/utimer/utimer-0.4-r1.ebuild | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/app-misc/utimer/utimer-0.4-r1.ebuild b/app-misc/utimer/utimer-0.4-r1.ebuild
new file mode 100644
index 00000000..2c4144a
--- /dev/null
+++ b/app-misc/utimer/utimer-0.4-r1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+EAPI=6
+
+DESCRIPTION="A command line timer and stopwatch"
+HOMEPAGE="http://utimer.codealpha.net/utimer"
+SRC_URI="http://utimer.codealpha.net/dl.php?file=${P}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug nls"
+
+DEPEND="
+	dev-libs/glib:2
+	dev-util/intltool"
+
+RDEPEND="${RDEPEND}"
+
+DOCS=( AUTHORS ChangeLog NEWS README )
+
+src_configure() {
+	local myconf=( --enable-debug=no )
+	use debug || myconf=( --enable-debug=yes )
+	econf "${myconf[@]}" $(use_enable nls)
+}
+
+src_install() {
+	emake install DESTDIR="${D}"
+	einstalldocs
+}