blob: b7dd23f23c31a099e9824ce03cb9a041427655ed (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-tv/xawtv/xawtv-3.88.ebuild,v 1.8 2004/07/14 21:12:28 agriffis Exp $
inherit virtualx
IUSE="aalib alsa mmx motif nls opengl quicktime"
MY_PATCH="xaw-deinterlace-3.76-0.1.1.diff.bz2"
MY_FONT=tv-fonts-1.0
DESCRIPTION="TV application for the bttv driver"
HOMEPAGE="http://bytesex.org/xawtv/"
SRC_URI="http://bytesex.org/xawtv/${PN}_${PV}.tar.gz
http://bytesex.org/xawtv/${MY_FONT}.tar.bz2
mirror://gentoo/${MY_PATCH}"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
DEPEND=">=sys-apps/sed-4.0.5
>=sys-libs/ncurses-5.1
>=media-libs/jpeg-6b
media-libs/libpng
media-libs/zvbi
virtual/x11
alsa? ( media-libs/alsa-lib )
aalib? ( media-libs/aalib )
motif? ( x11-libs/openmotif
app-text/recode )
opengl? ( virtual/opengl )
quicktime? ( virtual/quicktime )"
src_compile() {
local myconf
use motif \
&& myconf="--enable-motif" \
|| myconf="--disable-motif"
use aalib \
&& myconf="${myconf} --enable-aa" \
|| myconf="${myconf} --disable-aa"
use quicktime \
&& myconf="${myconf} --enable-quicktime" \
|| myconf="${myconf} --disable-quicktime"
use alsa \
&& myconf="${myconf} --enable-alsa" \
|| myconf="${myconf} --disable-alsa"
use opengl \
&& myconf="${myconf} --enable-gl" \
|| myconf="${myconf} --disable-gl"
use mmx || \
sed -i "s:#define MMX::" libng/plugins/linear_blend.c
econf \
--with-x \
--enable-xfree-ext \
--enable-xvideo \
--enable-zvbi \
${myconf} || die "xawtv failed"
make || die
cd ${WORKDIR}/${MY_FONT}
DISPLAY="" Xmake || die "tvfonts failed"
}
src_install() {
cd ${S}
einstall \
libdir=${D}/usr/lib/xawtv \
resdir=${D}/etc/X11 || die
dodoc COPYING Changes README* TODO
if [ -d /home/httpd ]
then
exeinto /home/httpd/cgi-bin
doexe scripts/webcam.cgi
dodoc ${FILESDIR}/webcamrc
fi
if ! use nls
then
rm -f ${D}/usr/share/man/fr
rm -f ${D}/usr/share/man/es
fi
# The makefile seems to be fubar'd for some data
dodir /usr/share/${PN}
mv ${D}/usr/share/*.list ${D}/usr/share/${PN}
mv ${D}/usr/share/Index* ${D}/usr/share/${PN}
cd ${WORKDIR}/${MY_FONT}
insinto /usr/X11R6/lib/X11/fonts/xawtv
doins *.gz fonts.alias
}
pkg_postinst() {
ebegin "installing teletype fonts into /usr/X11R6/lib/X11/fonts/xawtv"
cd /usr/X11R6/lib/X11/fonts/xawtv
mkfontdir
eend
}
|