diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2011-11-04 15:17:32 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2011-11-04 15:17:32 +0000 |
commit | 7c89b07d677ee2947aa478abf5e3558f9a7dd391 (patch) | |
tree | 7b4432be28bf8c48f9918fecb853f8515ad8da5d /gnustep-apps/gworkspace | |
parent | Remove comments about keeping virtuals in sync, which are no longer valid. (diff) | |
download | gentoo-2-7c89b07d677ee2947aa478abf5e3558f9a7dd391.tar.gz gentoo-2-7c89b07d677ee2947aa478abf5e3558f9a7dd391.tar.bz2 gentoo-2-7c89b07d677ee2947aa478abf5e3558f9a7dd391.zip |
Version bump. Fixes bug #387245
(Portage version: 2.2.0_alpha72/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.9.0.ebuild | 40 |
2 files changed, 48 insertions, 2 deletions
diff --git a/gnustep-apps/gworkspace/ChangeLog b/gnustep-apps/gworkspace/ChangeLog index 6d7dc2f3c439..016a628f021c 100644 --- a/gnustep-apps/gworkspace/ChangeLog +++ b/gnustep-apps/gworkspace/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for gnustep-apps/gworkspace -# 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 $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gworkspace/ChangeLog,v 1.31 2011/11/04 15:17:32 voyageur Exp $ + +*gworkspace-0.9.0 (04 Nov 2011) + + 04 Nov 2011; Bernard Cafarelli <voyageur@gentoo.org> + +gworkspace-0.9.0.ebuild: + Version bump. Fixes bug #387245 *gworkspace-0.8.8 (01 Jul 2010) diff --git a/gnustep-apps/gworkspace/gworkspace-0.9.0.ebuild b/gnustep-apps/gworkspace/gworkspace-0.9.0.ebuild new file mode 100644 index 000000000000..c52349beecc1 --- /dev/null +++ b/gnustep-apps/gworkspace/gworkspace-0.9.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gworkspace/gworkspace-0.9.0.ebuild,v 1.1 2011/11/04 15:17:32 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 +} |