blob: ef00fdb24cc3984e993be350efe488edaaa7b27f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/glastree/glastree-0.58.ebuild,v 1.3 2003/03/11 21:11:44 seemant Exp $
S=${WORKDIR}/${P}
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="x86"
LICENSE="public-domain"
src_install() {
dodir /usr/share/man/man1
make INSTROOT=${D}/usr INSTMAN=share/man install || die
dodoc README CHANGES THANKS TODO
}
|