From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BCFA91397E2 for ; Tue, 18 Aug 2015 08:14:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 353F3E07C2; Tue, 18 Aug 2015 08:14:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DBDF9E07C2 for ; Tue, 18 Aug 2015 08:14:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D7B26340909 for ; Tue, 18 Aug 2015 08:14:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 101D913F for ; Tue, 18 Aug 2015 08:14:42 +0000 (UTC) From: "José María Alonso" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "José María Alonso" Message-ID: <1439885721.cfaaa8f66b3585da02aea31f604bb45f996ae8c3.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: app-text/skribilo/ X-VCS-Repository: proj/lisp X-VCS-Files: app-text/skribilo/skribilo-0.9.1.ebuild X-VCS-Directories: app-text/skribilo/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: cfaaa8f66b3585da02aea31f604bb45f996ae8c3 X-VCS-Branch: master Date: Tue, 18 Aug 2015 08:14:42 +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: a382e3f2-61c7-4ea4-aff3-0b0dca3fe314 X-Archives-Hash: 3f6caa7f03cabbc7f19cdd213d6db616 commit: cfaaa8f66b3585da02aea31f604bb45f996ae8c3 Author: Chema Alonso Josa gentoo org> AuthorDate: Tue Aug 18 08:15:21 2015 +0000 Commit: José María Alonso gentoo org> CommitDate: Tue Aug 18 08:15:21 2015 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=cfaaa8f6 app-text/skribilo: ebuild cleanup (bug #557710) app-text/skribilo/skribilo-0.9.1.ebuild | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/app-text/skribilo/skribilo-0.9.1.ebuild b/app-text/skribilo/skribilo-0.9.1.ebuild index 695cd9b..ddde748 100644 --- a/app-text/skribilo/skribilo-0.9.1.ebuild +++ b/app-text/skribilo/skribilo-0.9.1.ebuild @@ -1,13 +1,14 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ -inherit autotools eutils git +EAPI=5 + +inherit eutils DESCRIPTION="Skribilo is a free document production tool." HOMEPAGE="http://www.nongnu.org/skribilo/" -SRC_URI="http://savannah.inetbridge.net/${PN}/${P}.tar.gz" -#EGIT_REPO_URI="git://git.sv.gnu.org/skribilo.git" +SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${PF}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" @@ -25,14 +26,15 @@ RDEPEND="${DEPEND}" #S="${WORKDIR}/${P}" src_unpack() { -# git_src_unpack -# eautoreconf -i unpack ${A} - cd ${S} + cd "${S}" } -src_compile() { +src_configure() { econf --with-guilemoduledir=/usr/share/guile/site || die "econf failed" +} + +src_compile() { emake -j1 || die "emake failed" }