summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2008-08-25 23:08:13 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2008-08-25 23:08:13 +0000
commitdda954260e6c901c86d0f88e974d089f0e162435 (patch)
tree40da6b2f7d6b589223cc4179dd6dc4c257872d85 /games-puzzle/picpuz
parentstable for x86 (diff)
downloadgentoo-2-dda954260e6c901c86d0f88e974d089f0e162435.tar.gz
gentoo-2-dda954260e6c901c86d0f88e974d089f0e162435.tar.bz2
gentoo-2-dda954260e6c901c86d0f88e974d089f0e162435.zip
old
(Portage version: 2.1.4.4)
Diffstat (limited to 'games-puzzle/picpuz')
-rw-r--r--games-puzzle/picpuz/files/picpuz-06-gcc43.patch13
-rw-r--r--games-puzzle/picpuz/picpuz-06.ebuild45
2 files changed, 0 insertions, 58 deletions
diff --git a/games-puzzle/picpuz/files/picpuz-06-gcc43.patch b/games-puzzle/picpuz/files/picpuz-06-gcc43.patch
deleted file mode 100644
index 4876120540bd..000000000000
--- a/games-puzzle/picpuz/files/picpuz-06-gcc43.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- zlib.h
-+++ zlib.h
-@@ -374,8 +374,8 @@
-
- typedef int zdialog_event(zdialog *zd, int widget); // widget event callback function
- typedef int zdialog_compl(zdialog *zd, int stat); // dialog completion callback function
--int zdialog_run(zdialog *zd, zdialog_event func = null, // run dialog with optional callbacks
-- zdialog_compl func = null); // (completion func >> non-modal dialog)
-+int zdialog_run(zdialog *zd, zdialog_event evfunc = null, // run dialog with optional callbacks
-+ zdialog_compl compfunc = null); // (completion func >> non-modal dialog)
-
- int zdialog_destroy(zdialog *zd); // destroy dialog (zdialog caller resp.)
-
diff --git a/games-puzzle/picpuz/picpuz-06.ebuild b/games-puzzle/picpuz/picpuz-06.ebuild
deleted file mode 100644
index 5dcb9f9421eb..000000000000
--- a/games-puzzle/picpuz/picpuz-06.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/picpuz/picpuz-06.ebuild,v 1.2 2008/05/01 11:01:43 nyhm Exp $
-
-inherit eutils games
-
-DESCRIPTION="a jigsaw puzzle program"
-HOMEPAGE="http://kornelix.squarespace.com/picpuz/"
-SRC_URI="http://kornelix.squarespace.com/storage/picpuz/${PN}.${PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=">=x11-libs/gtk+-2.8"
-
-S=${WORKDIR}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-gcc43.patch
- sed -i \
- -e 's:-O3:${CXXFLAGS} ${LDFLAGS}:' \
- picpuz-build.sh \
- || die "sed failed"
- sed -i \
- -e "s:helppath);:\"/usr/share/doc/${PF}\");:" \
- picpuz.cpp \
- || die "sed failed"
-}
-
-src_compile() {
- ./picpuz-build.sh || die "build failed"
-}
-
-src_install() {
- newgamesbin ${PN}.x ${PN} || die "newgamesbin failed"
- newicon ${PN}-icon.png ${PN}.png
- make_desktop_entry ${PN} Picpuz
- insinto /usr/share/doc/${PF}
- doins ${PN}-guide.pdf || die "doins failed"
- prepgamesdirs
-}