summaryrefslogtreecommitdiff
blob: 892b11bc30aa4a6810354e6e8950805040bdea6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=4

inherit eutils

DESCRIPTION="glastree is a poor mans snapshot utility using hardlinks written in perl"
HOMEPAGE="http://www.igmus.org/code/"
SRC_URI="http://www.igmus.org/files/${P}.tar.gz"
DEPEND="dev-lang/perl
	dev-perl/Date-Calc"
SLOT="0"
KEYWORDS="~amd64 ppc x86"
IUSE=""
LICENSE="public-domain"

src_prepare() {
	epatch "${FILESDIR}"/${PN}-posix-make.patch
}

src_compile() { :; }

src_install() {
	dodir /usr/share/man/man1
	emake INSTROOT="${D}"/usr INSTMAN=share/man install
	dodoc README CHANGES THANKS TODO
}