blob: e52e60a3ced09ab1a090a95561e6cbc3ef2803e9 (
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
29
30
31
32
33
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Your Name <your email>
# $Header: /var/cvsroot/gentoo-x86/app-arch/dump/dump-0.4.20_beta.ebuild,v 1.2 2000/11/20 08:14:50 achim Exp $
P=dump-0.4b20
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="Dump/restore ext2fs backup utilities"
SRC_URI="http://download.sourceforge.net/dump/${A}"
HOMEPAGE="http://dump.sourceforge.net"
src_compile() {
cd ${S}
try ./configure --prefix=/usr --host=${CHOST}
try make
}
src_install () {
cd ${S}
dodir /sbin
dodir /usr/man/man8
dodir /etc/dumpdates
try make BINDIR=${D}/sbin MANDIR=${D}/usr/man/man8 \
DUMPDATESPATH=${D}/etc/dumpdates install
dodoc CHANGES COPYRIGHT KNOWNBUGS MAINTAINERS
dodoc README REPORTING-BUGS THANKS TODO
}
|