diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2007-09-11 11:18:18 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2007-09-11 11:18:18 +0000 |
commit | 26b2b395227ff5991a7babf309960416962b1ad6 (patch) | |
tree | db96912689d2fef51aa3bdd165c6faea075c651f /gnustep-apps | |
parent | Check for svg USE-flag on x11-libs/cairo, bug #190901 (diff) | |
download | gentoo-2-26b2b395227ff5991a7babf309960416962b1ad6.tar.gz gentoo-2-26b2b395227ff5991a7babf309960416962b1ad6.tar.bz2 gentoo-2-26b2b395227ff5991a7babf309960416962b1ad6.zip |
Port to new GNUstep eclasses
(Portage version: 2.1.3.9)
Diffstat (limited to 'gnustep-apps')
-rw-r--r-- | gnustep-apps/gridlock/ChangeLog | 9 | ||||
-rw-r--r-- | gnustep-apps/gridlock/files/digest-gridlock-1.9-r2 (renamed from gnustep-apps/gridlock/files/digest-gridlock-1.9-r1) | 0 | ||||
-rw-r--r-- | gnustep-apps/gridlock/gridlock-1.9-r1.ebuild | 32 | ||||
-rw-r--r-- | gnustep-apps/gridlock/gridlock-1.9-r2.ebuild | 23 |
4 files changed, 31 insertions, 33 deletions
diff --git a/gnustep-apps/gridlock/ChangeLog b/gnustep-apps/gridlock/ChangeLog index 09962064c64d..a0ec3bb557aa 100644 --- a/gnustep-apps/gridlock/ChangeLog +++ b/gnustep-apps/gridlock/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for gnustep-apps/gridlock # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gridlock/ChangeLog,v 1.9 2007/08/18 15:19:45 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gridlock/ChangeLog,v 1.10 2007/09/11 11:18:17 voyageur Exp $ + +*gridlock-1.9-r2 (11 Sep 2007) + + 11 Sep 2007; Bernard Cafarelli <voyageur@gentoo.org> + -gridlock-1.9-r1.ebuild, +gridlock-1.9-r2.ebuild: + Port to new GNUstep eclasses, fix bug #170467 + Changed SRC_URI to gentoo mirrors 18 Aug 2007; Christoph Mende <angelos@gentoo.org> gridlock-1.9-r1.ebuild: Added ~amd64 wrt bug #170433 diff --git a/gnustep-apps/gridlock/files/digest-gridlock-1.9-r1 b/gnustep-apps/gridlock/files/digest-gridlock-1.9-r2 index 9deef1cba564..9deef1cba564 100644 --- a/gnustep-apps/gridlock/files/digest-gridlock-1.9-r1 +++ b/gnustep-apps/gridlock/files/digest-gridlock-1.9-r2 diff --git a/gnustep-apps/gridlock/gridlock-1.9-r1.ebuild b/gnustep-apps/gridlock/gridlock-1.9-r1.ebuild deleted file mode 100644 index f564c5bbf5f3..000000000000 --- a/gnustep-apps/gridlock/gridlock-1.9-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gridlock/gridlock-1.9-r1.ebuild,v 1.4 2007/08/18 15:19:45 angelos Exp $ - -inherit gnustep - -S=${WORKDIR}/${PN/g/G} - -DESCRIPTION="Gridlock is a collection of grid-based games" -# 25 Mar 2006: upstream appears to be dead -HOMEPAGE="http://dozingcat.com/" -SRC_URI="http://dozingcat.com/Gridlock/${PN/g/G}-gnustep-${PV}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" - -IUSE="doc" -DEPEND="${GS_DEPEND}" -RDEPEND="${GS_RDEPEND}" - -egnustep_install_domain "Local" - -src_install() { - egnustep_env - egnustep_install || die - if use doc - then - mkdir -p ${D}$(egnustep_install_domain)/Library/Documentation/User/Gridlock - cp Resources/readme.html ${D}$(egnustep_install_domain)/Library/Documentation/User/Gridlock - fi - egnustep_package_config -} diff --git a/gnustep-apps/gridlock/gridlock-1.9-r2.ebuild b/gnustep-apps/gridlock/gridlock-1.9-r2.ebuild new file mode 100644 index 000000000000..52416b035944 --- /dev/null +++ b/gnustep-apps/gridlock/gridlock-1.9-r2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gridlock/gridlock-1.9-r2.ebuild,v 1.1 2007/09/11 11:18:17 voyageur Exp $ + +inherit gnustep-2 + +S=${WORKDIR}/${PN/g/G} + +DESCRIPTION="Gridlock is a collection of grid-based games" +# 25 Mar 2006: upstream appears to be dead +HOMEPAGE="http://dozingcat.com/" +SRC_URI="mirror://gentoo/${PN/g/G}-gnustep-${PV}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +src_unpack() { + unpack ${A} + cd ${S} + + # Needed for newer make + rm ./obj +} |