blob: 105931b9be21682ab3f7b29e851156c05b5c8514 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/alevt/alevt-1.6.0-r3.ebuild,v 1.12 2005/07/10 19:53:26 swegener Exp $
inherit eutils
DESCRIPTION="Teletext viewer for X11"
HOMEPAGE="http://www.goron.de/~froese/"
SRC_URI="http://www.ibiblio.org/pub/Linux/apps/video/${P}.tar.gz"
SLOT="0"
KEYWORDS="x86 ~amd64"
IUSE="gnome"
LICENSE="GPL-2"
DEPEND="virtual/x11
>=media-libs/libpng-1.0.12"
src_unpack() {
unpack ${P}.tar.gz
epatch ${FILESDIR}/${P}-gentoo.diff # Parallel make patch
epatch ${FILESDIR}/xio_timer.patch
}
src_compile() {
emake || die
}
src_install() {
dobin alevt alevt-cap alevt-date
doman alevt.1x alevt-date.1 alevt-cap.1
dodoc CHANGELOG COPYRIGHT README
if use gnome ; then
insinto /usr/share/pixmaps
newins contrib/mini-alevt.xpm alevt.xpm
insinto /usr/share/applications
doins ${FILESDIR}/alevt.desktop
fi
}
|