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 C22181382C5 for ; Sun, 18 Mar 2018 12:49:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A303E0823; Sun, 18 Mar 2018 12:49:31 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 70B13E0823 for ; Sun, 18 Mar 2018 12:49:31 +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 43945335D38 for ; Sun, 18 Mar 2018 12:49:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 95D06239 for ; Sun, 18 Mar 2018 12:49:28 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1521377363.8caf8fb1ef5e995179f36a1e654272632f70f42b.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/emact/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/emact/Manifest app-editors/emact/emact-2.58.0.ebuild X-VCS-Directories: app-editors/emact/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 8caf8fb1ef5e995179f36a1e654272632f70f42b X-VCS-Branch: master Date: Sun, 18 Mar 2018 12:49:28 +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: 46d5a746-580f-4c99-b67b-d407d4448dcf X-Archives-Hash: c2acc79fcfdde90140db3ff90ca95ebf commit: 8caf8fb1ef5e995179f36a1e654272632f70f42b Author: Ulrich Müller gentoo org> AuthorDate: Sun Mar 18 12:48:29 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Mar 18 12:49:23 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8caf8fb1 app-editors/emact: Version bump. Package-Manager: Portage-2.3.24, Repoman-2.3.6 app-editors/emact/Manifest | 1 + app-editors/emact/emact-2.58.0.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/app-editors/emact/Manifest b/app-editors/emact/Manifest index daac0ab2649..d4d87ed4e35 100644 --- a/app-editors/emact/Manifest +++ b/app-editors/emact/Manifest @@ -1 +1,2 @@ DIST emact-2.56.0.tar.gz 578640 BLAKE2B 2bdf0a88003c0cbd28153737eac588dbb068ed99a1166dc66a5fac33f91d2b3c7e058518733c6eddbfeb3291f3ad89dd4a6bfc4b11ccda0963a314a5fbf4e2b0 SHA512 96fce3bf3e00e84abd9de0778a02cfd284689073391e6f9eb3bb4a54e8899ae32d9e8acd45d0f1d575e36f171ca148fc574c9ecc71615df9a9907ee1d30bb99d +DIST emact-2.58.0.tar.gz 581248 BLAKE2B 9be43cfc37973d683c5c824bf2f2d60d0ffab2791c46a4082f04d83fc705713d5806608e5802e786be4ced4b008842c5c6dca60b7a30c5483b29736ccc21ffe5 SHA512 43108d0bc1989ba6e11f12e86ad5fa4e0b06dc2cc11f54a8b1ca548bb91d2d201f62ffda5e8c11ff75a724229ca1a2ae3e2f439ebc62e1fe3f484f811a88a2c2 diff --git a/app-editors/emact/emact-2.58.0.ebuild b/app-editors/emact/emact-2.58.0.ebuild new file mode 100644 index 00000000000..b5eeeec97fa --- /dev/null +++ b/app-editors/emact/emact-2.58.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="EmACT, a fork of Conroy's MicroEmacs" +HOMEPAGE="http://www.eligis.com/emacs/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2+ BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="X" + +DEPEND="sys-libs/ncurses:0= + X? ( x11-libs/libX11 )" +RDEPEND="${DEPEND}" + +src_configure() { + econf $(use_with X x) +} + +src_install() { + emake INSTALL="${D}"/usr install + #dodoc README +}