blob: fd07ff494815cd9f034975b59cc8dace0d721b53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/dvdimagecmp/dvdimagecmp-0.3.ebuild,v 1.1 2007/07/19 06:59:21 zzam Exp $
DESCRIPTION="Tool to compare a burned DVD with an image to check for errors"
HOMEPAGE="ftp://sunsite.unc.edu/pub/linux/apps/video/"
SRC_URI="ftp://sunsite.unc.edu/pub/linux/apps/video/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND=""
src_compile() {
emake CFLAGS="$CFLAGS" || die "make failed"
}
src_install() {
dobin dvdimagecmp
dodoc CHANGES README *.lsm
}
|