forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dvbackup-0.0.4-r1.ebuild
52 lines (40 loc) · 1.08 KB
/
dvbackup-0.0.4-r1.ebuild
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="2"
inherit eutils
DESCRIPTION="A small utility for creating backups on DV tapes"
HOMEPAGE="http://dvbackup.sourceforge.net/"
SRC_URI="mirror://sourceforge/dvbackup/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="sys-libs/glibc
dev-libs/popt
sys-libs/zlib"
RDEPEND="${DEPEND}
media-libs/libdv"
src_prepare() {
local i
epatch "${FILESDIR}/${P}-gcc4.diff"
# fix Makefile to respect $LDFLAGS
sed -i -e 's:gcc \$(CFLAGS):\$(CC) \$(CFLAGS) \$(LDFLAGS):g' \
-e 's:^\(CFLAGS=\):#\1:g' Makefile
# convert LATIN1 docs to UTF-8
for i in ChangeLog ReleaseNotes; do
if [ -f "${i}" ]; then
echo ">>> Converting ${i} to UTF-8"
iconv -f LATIN1 -t UTF8 -o "${i}~" "${i}" && mv -f "${i}~" "${i}" || rm -f "${i}~"
fi
done
}
src_compile() {
emake dvbackup || die "emake failed"
}
src_install() {
dobin dvbackup
insinto /usr/share/${PN}
doins underrun-ntsc.dv underrun-pal.dv
dodoc AUTHORS ChangeLog ReleaseNotes
dohtml dvbackup.html
}