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 C712B1396D0 for ; Thu, 17 Aug 2017 13:54:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E109E0D9B; Thu, 17 Aug 2017 13:54:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 0DA56E0D9B for ; Thu, 17 Aug 2017 13:54:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 08D1D3418C6 for ; Thu, 17 Aug 2017 13:54:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8050078F0 for ; Thu, 17 Aug 2017 13:53:58 +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: <1502977983.858df1ac850b84731c19e0db161b07d3a6c6ab1a.amynka@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/jargon/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-doc/jargon/jargon-4.4.7-r1.ebuild X-VCS-Directories: app-doc/jargon/ X-VCS-Committer: amynka X-VCS-Committer-Name: Amy Liffey X-VCS-Revision: 858df1ac850b84731c19e0db161b07d3a6c6ab1a X-VCS-Branch: master Date: Thu, 17 Aug 2017 13:53:58 +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: 7a727b61-87e7-46ec-b472-19bda392014d X-Archives-Hash: a4cc9a752954f34a7f6319ed8393bff9 commit: 858df1ac850b84731c19e0db161b07d3a6c6ab1a Author: Amy Liffey gentoo org> AuthorDate: Thu Aug 17 13:52:20 2017 +0000 Commit: Amy Liffey gentoo org> CommitDate: Thu Aug 17 13:53:03 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=858df1ac app-doc/jargon: EAPI 6 bump Package-Manager: Portage-2.3.6, Repoman-2.3.1 app-doc/jargon/jargon-4.4.7-r1.ebuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/app-doc/jargon/jargon-4.4.7-r1.ebuild b/app-doc/jargon/jargon-4.4.7-r1.ebuild new file mode 100644 index 00000000000..4066fef77e4 --- /dev/null +++ b/app-doc/jargon/jargon-4.4.7-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="A compendium of hacker slang illuminating many aspects of hackish tradition" +HOMEPAGE="http://www.catb.org/~esr/jargon" +SRC_URI="http://www.catb.org/~esr/jargon/${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +src_prepare() { + find "${S}" -name .xvpics | xargs rm -rf || die + cd "${S}/html" || die + sed -i -e 's#\.\./\.\.#..#' */* \ + || die "sed failed" + default +} + +src_install() { + dodoc -r html/* +}