diff options
author | 2005-04-17 14:17:25 +0000 | |
---|---|---|
committer | 2005-04-17 14:17:25 +0000 | |
commit | cb3bcbf1ba65d0e73f3148f50dc08dc7a8d0c0f0 (patch) | |
tree | dae4b8b7a38ddbc34bd4e2a17eabc2cd67c6fddd /gnome-extra/gnome-games/gnome-games-2.10.1.ebuild | |
parent | Minor fix (diff) | |
download | gentoo-2-cb3bcbf1ba65d0e73f3148f50dc08dc7a8d0c0f0.tar.gz gentoo-2-cb3bcbf1ba65d0e73f3148f50dc08dc7a8d0c0f0.tar.bz2 gentoo-2-cb3bcbf1ba65d0e73f3148f50dc08dc7a8d0c0f0.zip |
bugfix release
(Portage version: 2.0.51.19)
Diffstat (limited to 'gnome-extra/gnome-games/gnome-games-2.10.1.ebuild')
-rw-r--r-- | gnome-extra/gnome-games/gnome-games-2.10.1.ebuild | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/gnome-extra/gnome-games/gnome-games-2.10.1.ebuild b/gnome-extra/gnome-games/gnome-games-2.10.1.ebuild new file mode 100644 index 000000000000..714117fbdbcc --- /dev/null +++ b/gnome-extra/gnome-games/gnome-games-2.10.1.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-games/gnome-games-2.10.1.ebuild,v 1.1 2005/04/17 14:17:25 joem Exp $ + +inherit gnome2 eutils flag-o-matic + +DESCRIPTION="Collection of games for the GNOME desktop" +HOMEPAGE="http://www.gnome.org/" + +LICENSE="GPL-2 FDL-1.1" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~hppa ~amd64 ~ia64" +IUSE="guile artworkextra howl" + +RDEPEND=">=x11-libs/gtk+-2.5.4 + >=gnome-base/gconf-2 + >=gnome-base/gnome-vfs-2 + >=gnome-base/libgnome-2 + >=gnome-base/libgnomeui-2 + >=gnome-base/librsvg-2 + guile? ( >=dev-util/guile-1.6.5 ) + artworkextra? ( gnome-extra/gnome-games-extra-data ) + howl? ( >=net-misc/howl-0.9.6 )" + +DEPEND=">=dev-util/pkgconfig-0.12.0 + >=dev-util/intltool-0.29 + >=sys-devel/gettext-0.10.40 + >=app-text/scrollkeeper-0.3.8 + ${RDEPEND}" + +DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README TODO" + +G2CONF="${G2CONF} `use_enable howl` --disable-setgid" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/${PN}-2.9.6-nohowl.patch + + autoconf || die "autoconf failed" +} + +src_install() { + + # FIXME : for some reason this doesn't get picked up + append-ldflags "-Wl,-z,now" + + gnome2_src_install + cd ${S} + + # Documentation install for each of the games + for game in `find . -type d -maxdepth 1` + do + docinto ${game} + dodoc ${game}/{AUTHORS,ChangeLog,TODO,NEWS,README,COPYING} > /dev/null + done + + rm -rf ${D}/usr/share/doc/${P}/{libgames-support,po} + + # Avoid overwriting previous .scores files + local basefile + for scorefile in ${D}/var/lib/games/*.scores + do + basefile=$(basename $scorefile) + if [ -s "${ROOT}/var/lib/games/${basefile}" ] + then + rm ${scorefile} + fi + done + +} + +pkg_postinst() { + + gnome2_pkg_postinst + + einfo "For security reasons system wide scores are disabled by default from" + einfo "now on. To re-enable them, do 'chmod +s <exec>', where <exec> is all" + einfo "executables that 'qpkg -l -nc gnome-games | grep /usr/bin/' yields" + einfo "(requires gentoolkit)." + +} |