diff options
Diffstat (limited to 'gnome-extra/gnome-games/gnome-games-2.12.1.ebuild')
-rw-r--r-- | gnome-extra/gnome-games/gnome-games-2.12.1.ebuild | 81 |
1 files changed, 0 insertions, 81 deletions
diff --git a/gnome-extra/gnome-games/gnome-games-2.12.1.ebuild b/gnome-extra/gnome-games/gnome-games-2.12.1.ebuild deleted file mode 100644 index fbd5699b5ef4..000000000000 --- a/gnome-extra/gnome-games/gnome-games-2.12.1.ebuild +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright 1999-2006 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.12.1.ebuild,v 1.2 2006/03/15 00:41:34 allanonjl Exp $ - -inherit eutils gnome2 - -DESCRIPTION="Collection of games for the GNOME desktop" -HOMEPAGE="http://www.gnome.org/" - -LICENSE="GPL-2 FDL-1.1" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" -IUSE="artworkextra guile howl" - -RDEPEND=">=gnome-base/gconf-2 - >=gnome-base/libgnomeui-2 - >=gnome-base/libgnome-2 - >=x11-libs/gtk+-2.6.3 - >=gnome-base/librsvg-2 - >=gnome-base/libglade-2 - >=dev-libs/glib-2.6.3 - >=gnome-base/gnome-vfs-2 - guile? ( >=dev-util/guile-1.6.5 ) - artworkextra? ( gnome-extra/gnome-games-extra-data ) - howl? ( >=net-misc/howl-0.9.6 )" - -DEPEND="${RDEPEND} - >=dev-util/pkgconfig-0.9 - >=dev-util/intltool-0.29 - >=sys-devel/gettext-0.10.40 - >=app-text/scrollkeeper-0.3.8" - -DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README TODO" - - -pkg_setup() { - GAMES_GROUP=${GAMES_GROUP:-games} - enewgroup "${GAMES_GROUP}" - - G2CONF="--with-scores-group=${GAMES_GROUP} \ - $(use_enable howl) \ - $(use_enable guile)" -} - -src_unpack() { - unpack "${A}" - cd "${S}" - - # Implement --enable-guile switch - epatch ${FILESDIR}/${PN}-2.12.0-guile_switch.patch - # Resolve symbols at execution time in setgid binaries - epatch ${FILESDIR}/${PN}-2.12.0-no_lazy_bindings.patch - - epatch ${FILESDIR}/${PN}-2.11.4-nohowl.patch - - gnome2_omf_fix - - autoconf || die "autoconf failed" -} - -src_install() { - gnome2_src_install - - # Documentation install for each of the games - for game in \ - $(find . -maxdepth 1 -type d ! -name po ! -name libgames-support); do - docinto ${game} - for doc in AUTHORS ChangeLog NEWS README TODO; do - [ -s ${game}/${doc} ] && dodoc ${game}/${doc} - done - done - - # 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 -} |