app-backup/backupninja: Fix logs location (#578614)
authorPacho Ramos <pacho@gentoo.org>
Mon, 2 Apr 2018 10:29:38 +0000 (12:29 +0200)
committerPacho Ramos <pacho@gentoo.org>
Mon, 2 Apr 2018 10:40:37 +0000 (12:40 +0200)
Package-Manager: Portage-2.3.27, Repoman-2.3.9

app-backup/backupninja/backupninja-1.0.1-r1.ebuild [new file with mode: 0644]

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 (file)
index 0000000..793e1f9
--- /dev/null
@@ -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
+}