diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2010-07-01 09:21:42 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2010-07-01 09:21:42 +0000 |
commit | 83411f460713aaa20aea3933bb6c674ce1929899 (patch) | |
tree | c8046a30a8b8cb3bcb2ab4beaa727bd2eafc6962 /gnustep-apps/gworkspace | |
parent | Mask panda3d for removal. (diff) | |
download | gentoo-2-83411f460713aaa20aea3933bb6c674ce1929899.tar.gz gentoo-2-83411f460713aaa20aea3933bb6c674ce1929899.tar.bz2 gentoo-2-83411f460713aaa20aea3933bb6c674ce1929899.zip |
Version bump, EAPI3, disable GWMetadata for now (does not build)
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'gnustep-apps/gworkspace')
-rw-r--r-- | gnustep-apps/gworkspace/ChangeLog | 10 | ||||
-rw-r--r-- | gnustep-apps/gworkspace/gworkspace-0.8.8.ebuild | 40 |
2 files changed, 48 insertions, 2 deletions
diff --git a/gnustep-apps/gworkspace/ChangeLog b/gnustep-apps/gworkspace/ChangeLog index ba1577e461db..6d7dc2f3c439 100644 --- a/gnustep-apps/gworkspace/ChangeLog +++ b/gnustep-apps/gworkspace/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for gnustep-apps/gworkspace -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gworkspace/ChangeLog,v 1.29 2008/10/09 14:36:11 voyageur Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gworkspace/ChangeLog,v 1.30 2010/07/01 09:21:42 voyageur Exp $ + +*gworkspace-0.8.8 (01 Jul 2010) + + 01 Jul 2010; Bernard Cafarelli <voyageur@gentoo.org> + +gworkspace-0.8.8.ebuild: + Version bump, EAPI3, disable GWMetadata for now (does not build) *gworkspace-0.8.7 (09 Oct 2008) diff --git a/gnustep-apps/gworkspace/gworkspace-0.8.8.ebuild b/gnustep-apps/gworkspace/gworkspace-0.8.8.ebuild new file mode 100644 index 000000000000..98b3fc797d4e --- /dev/null +++ b/gnustep-apps/gworkspace/gworkspace-0.8.8.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gworkspace/gworkspace-0.8.8.ebuild,v 1.1 2010/07/01 09:21:42 voyageur Exp $ + +EAPI=3 +inherit gnustep-2 + +DESCRIPTION="A workspace manager for GNUstep" +HOMEPAGE="http://www.gnustep.org/experience/GWorkspace.html" +SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/usr-apps/${P}.tar.gz" + +KEYWORDS="~amd64 ~ppc ~x86" +LICENSE="GPL-2" +SLOT="0" + +IUSE="" + +# GWMetadata compilation broken for now +#DEPEND=">=gnustep-apps/systempreferences-1.0.1_p24791 +# >=dev-db/sqlite-3.2.8" +#RDEPEND="${DEPEND}" + +src_configure() { + local myconf="" + use kernel_linux && myconf="${myconf} --with-inotify" + + egnustep_env + econf --disable-gwmetadata ${myconf} +} + +src_install() { + egnustep_env + egnustep_install + + if use doc; + then + dodir /usr/share/doc/${PF} + cp "${S}"/Documentation/*.pdf "${D}"/usr/share/doc/${PF} + fi +} |