diff options
author | Chema Alonso Josa <nimiux@gentoo.org> | 2015-08-18 10:15:21 +0200 |
---|---|---|
committer | Chema Alonso Josa <nimiux@gentoo.org> | 2018-03-09 22:33:44 +0100 |
commit | 0395b1223ed90fde0bc63e4db06f95b75fbd2b67 (patch) | |
tree | 9c124254d3643c329d4e21161b1d8a796a7e1f33 /app-text | |
parent | dev-lisp/split-sequence: bump to version 1.2 (diff) | |
download | lisp-0395b1223ed90fde0bc63e4db06f95b75fbd2b67.tar.gz lisp-0395b1223ed90fde0bc63e4db06f95b75fbd2b67.tar.bz2 lisp-0395b1223ed90fde0bc63e4db06f95b75fbd2b67.zip |
app-text/skribilo: ebuild cleanup (bug #557710)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/skribilo/Manifest | 4 | ||||
-rw-r--r-- | app-text/skribilo/skribilo-0.9.1.ebuild | 18 |
2 files changed, 12 insertions, 10 deletions
diff --git a/app-text/skribilo/Manifest b/app-text/skribilo/Manifest index 2d902485..6c8cf6ec 100644 --- a/app-text/skribilo/Manifest +++ b/app-text/skribilo/Manifest @@ -1,2 +1,2 @@ -DIST skribilo-0.9.1.tar.gz 488591 RMD160 c1b2f0330f89ee2d28a295251b2f9ad0fe8185c9 SHA1 fe9fc92273b5fbdab220d50b6309f3d96b4b50f1 SHA256 79731fc63abe0a537d19f4a5a3b7016249fc4cc2c057c288155eb2b95cc59b07 -EBUILD skribilo-0.9.1.ebuild 851 RMD160 996327feb28b32e0b96556a720d7e3dffc6abf83 SHA1 eb12dd452067927807babc8d4c6d48bcbf107e64 SHA256 c0c8c5bbf4ad225064ddb95f997abe2a92e68a513732f50860029d02c662ae77 +DIST skribilo-0.9.1.tar.gz 488591 SHA256 79731fc63abe0a537d19f4a5a3b7016249fc4cc2c057c288155eb2b95cc59b07 SHA512 94eb740f4d19f28c8bc3aa5e25d5455cf76fac4737722bc64be32947f7608c2253901d21ccdb5c257772aae5f06b4802c120a463446b8b17bbe2b6403d5d9e0f WHIRLPOOL a701f8975643ca0bef4ad458e260571ce468a2937500876651d1be1db74eee805941bbe11ebb1d708c441765966352b78a3d0f1845b1f7c1100b49b447be1d00 +EBUILD skribilo-0.9.1.ebuild 795 SHA256 6780b19dffbbf917f606f91d7fdcb7f450f9971d2a2283b7bf64982aa6a22646 SHA512 f95416bda53fc42f83da31d0dcaf578786089ae2f54d885ebd665b510d9d4c7200de171cbcdde07cc389bcf205ca5dc2c55de84a20c8e51654616d11def4618f WHIRLPOOL 848d8356d0995e4d3702c9b1ad8c25ad7e0ddd6334bf9d1e0c9bb2d5228387950f18e0e45876687245d4430590c82e772bd907c54b869954519e400c42101834 diff --git a/app-text/skribilo/skribilo-0.9.1.ebuild b/app-text/skribilo/skribilo-0.9.1.ebuild index 695cd9b9..ddde7487 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" } |