commit: cfaaa8f66b3585da02aea31f604bb45f996ae8c3 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org> AuthorDate: Tue Aug 18 08:15:21 2015 +0000 Commit: José María Alonso <nimiux <AT> gentoo <DOT> 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" }
