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 30B88138334 for ; Wed, 2 Jan 2019 01:04:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 310D0E0968; Wed, 2 Jan 2019 01:04:23 +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 04CA4E0968 for ; Wed, 2 Jan 2019 01:04:22 +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 7F40C335CFC for ; Wed, 2 Jan 2019 01:04:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C39F4F2 for ; Wed, 2 Jan 2019 01:04:18 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1546391055.687380fdc88a8d4ab1ce1e3352a12a7f0ded187e.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/surfraw/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/surfraw/surfraw-99999.ebuild X-VCS-Directories: www-client/surfraw/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 687380fdc88a8d4ab1ce1e3352a12a7f0ded187e X-VCS-Branch: master Date: Wed, 2 Jan 2019 01:04:18 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2ae5eb67-f4c4-4cc5-a66b-b62d8d728b4e X-Archives-Hash: eacda5d58c47651932b7a19588da9cbf commit: 687380fdc88a8d4ab1ce1e3352a12a7f0ded187e Author: Jeroen Roovers gentoo org> AuthorDate: Wed Jan 2 01:03:52 2019 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Wed Jan 2 01:04:15 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=687380fd www-client/surfraw: Add live ebuild Package-Manager: Portage-2.3.53, Repoman-2.3.12 Signed-off-by: Jeroen Roovers gentoo.org> www-client/surfraw/surfraw-99999.ebuild | 48 +++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/www-client/surfraw/surfraw-99999.ebuild b/www-client/surfraw/surfraw-99999.ebuild new file mode 100644 index 00000000000..bc760e5d611 --- /dev/null +++ b/www-client/surfraw/surfraw-99999.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools bash-completion-r1 git-r3 + +DESCRIPTION="A fast unix command line interface to WWW" +LICENSE="public-domain" +HOMEPAGE=" + http://surfraw.alioth.debian.org/ + https://gitlab.com/surfraw/Surfraw +" +EGIT_REPO_URI="https://gitlab.com/surfraw/Surfraw.git" + +SLOT="0" +KEYWORDS="" +RESTRICT="test" + +RDEPEND=" + dev-lang/perl +" +DOCS=( + AUTHORS ChangeLog HACKING NEWS README TODO +) +PATCHES=( + "${FILESDIR}"/${PN}-2.3.0-completion.patch +) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf --with-elvidir='$(datadir)'/surfraw +} + +src_install() { + default + + newbashcomp surfraw-bash-completion ${PN} + bashcomp_alias ${PN} sr + + docinto examples + dodoc examples/README + insinto /usr/share/doc/${PF}/examples + doins examples/uzbl_load_url_from_surfraw +}