blob: 05012e421cc6a36c05fe4ca311ec7a1457815da7 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="A Conway's Life simulator written in GTK+2 - fork from Gtklife"
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-libs/atk
dev-libs/glib
dev-libs/gobject-introspection
media-libs/fontconfig
media-libs/freetype
x11-libs/gdk-pixbuf
x11-libs/gtk+:2
x11-libs/libX11
x11-libs/pango
"
DEPEND="${RDEPEND}"
BDEPEND="
dev-util/intltool
sys-devel/gettext
virtual/pkgconfig
"
PATCHES=(
"${FILESDIR}"/${P}-gnome-vfs.patch
"${FILESDIR}"/${P}-underlink.patch
)
src_prepare() {
default
eautoreconf
intltoolize --force --copy --automake || die
}
src_install() {
emake install \
desktopdir=/usr/share/applications \
pixmapdir=/usr/share/pixmaps \
DESTDIR="${D}"
# Let's just shift the docdir
mv "${ED}"/usr/share/doc/${PN} "${ED}"/usr/share/doc/${PF} || die
dodoc AUTHORS ChangeLog NEWS README TODO
}
|