forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alevt-1.6.2.ebuild
48 lines (37 loc) · 1019 Bytes
/
alevt-1.6.2.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
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit eutils toolchain-funcs flag-o-matic
DESCRIPTION="Teletext viewer for X11"
HOMEPAGE="http://www.goron.de/~froese/"
SRC_URI="http://www.goron.de/~froese/alevt/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc x86"
IUSE=""
RDEPEND="x11-libs/libX11
>=media-libs/libpng-1.4"
DEPEND="${RDEPEND}
x11-proto/xproto"
RESTRICT="strip"
src_prepare() {
cp -va Makefile{,.orig}
epatch \
"${FILESDIR}"/${P}-respectflags.patch \
"${FILESDIR}"/${P}-libpng15.patch
}
src_compile() {
append-flags -fno-strict-aliasing
emake CC="$(tc-getCC)"
}
src_install() {
dobin alevt alevt-cap alevt-date
doman alevt.1x alevt-date.1 alevt-cap.1
dodoc CHANGELOG README
insinto /usr/share/icons/hicolor/16x16/apps
newins contrib/mini-alevt.xpm alevt.xpm
insinto /usr/share/icons/hicolor/48x48/apps
newins contrib/icon48x48.xpm alevt.xpm
make_desktop_entry alevt "AleVT" alevt
}