blob: a612d5802e640295b1324f0806eabe13b54712dd (
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
34
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-backup/cdbackup/cdbackup-0.7.0.ebuild,v 1.2 2008/10/14 22:52:25 flameeyes Exp $
inherit eutils
DESCRIPTION="Allows streaming backup utilities to dump/restore from CD-R(W)s or DVD(+/-RW)s"
HOMEPAGE="http://www.muempf.de/index.html"
SRC_URI="http://www.muempf.de/down/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND=">=app-cdr/cdrtools-1.11.28"
DEPEND=""
src_unpack() {
unpack ${A} ; cd ${S}
sed -i \
-e "s:^PREFIX=/usr/local$:PREFIX=\${DESTDIR}/usr:" Makefile \
|| die "sed Makefile failed"
}
src_compile() {
make DESTDIR="${D}" || die "make failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc CHANGES CREDITS README LICENSE
}
|