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 2FD721382C5 for ; Mon, 2 Apr 2018 10:40:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3DBFCE0D40; Mon, 2 Apr 2018 10:40:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 1922DE0D40 for ; Mon, 2 Apr 2018 10:40:48 +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 BC4C433BEAC for ; Mon, 2 Apr 2018 10:40:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A4E6826E for ; Mon, 2 Apr 2018 10:40:44 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1522665637.30367782575a3b0647d898b474a070da59ec2eb8.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/backupninja/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/backupninja/backupninja-1.0.1-r1.ebuild X-VCS-Directories: app-backup/backupninja/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 30367782575a3b0647d898b474a070da59ec2eb8 X-VCS-Branch: master Date: Mon, 2 Apr 2018 10:40:44 +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: 73acec9e-f5d8-49f8-a4c9-3e72a98f1694 X-Archives-Hash: 327315d26cabe587f165dc90ea91bc30 commit: 30367782575a3b0647d898b474a070da59ec2eb8 Author: Pacho Ramos gentoo org> AuthorDate: Mon Apr 2 10:29:38 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Mon Apr 2 10:40:37 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30367782 app-backup/backupninja: Fix logs location (#578614) Package-Manager: Portage-2.3.27, Repoman-2.3.9 app-backup/backupninja/backupninja-1.0.1-r1.ebuild | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/app-backup/backupninja/backupninja-1.0.1-r1.ebuild b/app-backup/backupninja/backupninja-1.0.1-r1.ebuild new file mode 100644 index 00000000000..793e1f9e158 --- /dev/null +++ b/app-backup/backupninja/backupninja-1.0.1-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools + +# This thing change with every release, how idiotic... +NODE_NUMBER=275 + +DESCRIPTION="lightweight, extensible meta-backup system" +HOMEPAGE="http://riseuplabs.org/backupninja/" +SRC_URI="https://labs.riseup.net/code/attachments/download/${NODE_NUMBER}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-util/dialog" +DEPEND="" + +src_prepare() { + default + mv configure.in configure.ac + eautoreconf +} + +src_configure() { + econf --localstatedir=/var #578614 +}