50 lines
1.1 KiB
Bash
50 lines
1.1 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/games-board/gtkatlantic/gtkatlantic-0.4.3.ebuild,v 1.3 2013/11/13 11:33:10 chainsaw Exp $
|
|
|
|
EAPI=5
|
|
inherit autotools eutils gnome2-utils games
|
|
|
|
DESCRIPTION="Monopoly-like game that works with the monopd server"
|
|
HOMEPAGE="http://gtkatlantic.gradator.net/"
|
|
SRC_URI="http://gtkatlantic.gradator.net/downloads/v0.4/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="x11-libs/gtk+:2
|
|
dev-libs/libxml2
|
|
media-libs/libpng:0"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-compile.patch
|
|
eautoreconf
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die
|
|
dodoc AUTHORS ChangeLog NEWS README
|
|
newicon data/icon32x32.xpm ${PN}.xpm
|
|
newicon -s 16 data/icon16x16.xpm ${PN}.xpm
|
|
newicon -s 32 data/icon32x32.xpm ${PN}.xpm
|
|
make_desktop_entry ${PN} GtkAtlantic
|
|
prepgamesdirs
|
|
}
|
|
|
|
pkg_preinst() {
|
|
games_pkg_preinst
|
|
gnome2_icon_savelist
|
|
}
|
|
|
|
pkg_postinst() {
|
|
games_pkg_postinst
|
|
gnome2_icon_cache_update
|
|
}
|
|
|
|
pkg_postrm() {
|
|
gnome2_icon_cache_update
|
|
}
|