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 8A3391396D0 for ; Wed, 23 Aug 2017 08:48:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D33011FC003; Wed, 23 Aug 2017 08:48:19 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B42961FC003 for ; Wed, 23 Aug 2017 08:48:19 +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 C5D39341AD8 for ; Wed, 23 Aug 2017 08:48:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 306147F92 for ; Wed, 23 Aug 2017 08:48:17 +0000 (UTC) From: "Amy Liffey" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Amy Liffey" Message-ID: <1503478069.b8141de4181b5b44c7053226423abb976b77c9a4.amynka@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/figurine/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/figurine/figurine-1.0.5-r1.ebuild X-VCS-Directories: media-gfx/figurine/ X-VCS-Committer: amynka X-VCS-Committer-Name: Amy Liffey X-VCS-Revision: b8141de4181b5b44c7053226423abb976b77c9a4 X-VCS-Branch: master Date: Wed, 23 Aug 2017 08:48:17 +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: 53bc65c2-1f31-4ef1-8e43-95899351e64f X-Archives-Hash: b5a69c131feaee4248addfa5313c06fc commit: b8141de4181b5b44c7053226423abb976b77c9a4 Author: Amy Liffey gentoo org> AuthorDate: Wed Aug 23 08:47:49 2017 +0000 Commit: Amy Liffey gentoo org> CommitDate: Wed Aug 23 08:47:49 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8141de4 media-gfx/figurine: EAPI 6 bump Package-Manager: Portage-2.3.6, Repoman-2.3.1 media-gfx/figurine/figurine-1.0.5-r1.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/media-gfx/figurine/figurine-1.0.5-r1.ebuild b/media-gfx/figurine/figurine-1.0.5-r1.ebuild new file mode 100644 index 00000000000..23b4be50572 --- /dev/null +++ b/media-gfx/figurine/figurine-1.0.5-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="A vector based graphics editor similar to xfig, but simpler" +HOMEPAGE="http://figurine.sourceforge.net/" +SRC_URI="mirror://sourceforge/figurine/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="" + +RDEPEND="" +DEPEND="${RDEPEND} + >=media-gfx/transfig-3.2" + +src_configure() { + econf +} + +src_install() { + emake DESTDIR="${D}" install + dodoc AUTHORS BUGS ChangeLog INSTALL NEWS README +}