blob: a2e4483eb798e49ba7384ff5c657cdb05291c8c2 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/atool/atool-0.29.0.ebuild,v 1.2 2005/01/01 11:41:22 eradicator Exp $
DESCRIPTION="script for managing file archives of various types (atr,tar+gzip,zip,etc)"
HOMEPAGE="http://www.student.lu.se/~nbi98oli/"
SRC_URI="http://www.student.lu.se/~nbi98oli/src/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~amd64"
IUSE=""
DEPEND="dev-lang/perl"
src_install() {
dobin atool || die
dosym atool /usr/bin/acat
dosym atool /usr/bin/adiff
dosym atool /usr/bin/als
dosym atool /usr/bin/apack
dosym atool /usr/bin/aunpack
dodoc ChangeLog TODO README NEWS
doman atool.1
}
|