30 lines
718 B
Bash
30 lines
718 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-backup/backupninja/backupninja-0.9.10.ebuild,v 1.2 2012/04/01 12:02:37 hwoarang Exp $
|
|
|
|
EAPI=4
|
|
|
|
WANT_AUTOMAKE="1.10"
|
|
|
|
inherit autotools
|
|
|
|
# This thing change with every release, how idiotic...
|
|
NODE_NUMBER=242
|
|
|
|
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"
|
|
IUSE=""
|
|
|
|
DEPEND="dev-util/dialog"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
DOCS=( AUTHORS FAQ TODO README NEWS )
|
|
|
|
src_prepare() {
|
|
eautoreconf
|
|
}
|