blob: e06f4b4501973d3113dfe54232349f23bdf3941f (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit autotools
DESCRIPTION="GTK+ linux weather satellite APT image decoder software"
HOMEPAGE="http://5b4az.chronos.org.uk/pages/apt.html"
SRC_URI="http://5b4az.chronos.org.uk/pkg/apt/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
x11-libs/gtk+:2"
DEPEND="${RDEPEND}
dev-util/pkgconfig
dev-libs/glib:2"
S=${WORKDIR}/${PN}
src_prepare() {
# create missing mkinstalldir and prepare package
glib-gettextize --force --copy || die "gettextize failed"
eautoreconf
}
src_install() {
default
dohtml doc/xwxapt.html || die "dohtml failed"
insinto /usr/share/${PN}
doins xwxapt/xwxaptrc || die "doins failed"
dodir /usr/share/${PN}/images /usr/share/${PN}/records || die "dodir failed"
}
pkg_postinst() {
einfo "You must copy the /usr/share/xwxapt directory into your home directory"
einfo "and configure the contained xwxaptrc file before starting the program"
}
|