diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2021-12-29 12:11:44 +0100 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2021-12-29 12:16:44 +0100 |
commit | e4326bb358ffeff15d34181ce926e886ca132de1 (patch) | |
tree | 529f265399d9e711d6534f8aa8c8dd1ab53d95a1 /gnustep-apps/gworkspace/gworkspace-1.0.0.ebuild | |
parent | gnustep-apps/gworkspace: move 0.9.4-r1 as stable (diff) | |
download | gentoo-e4326bb358ffeff15d34181ce926e886ca132de1.tar.gz gentoo-e4326bb358ffeff15d34181ce926e886ca132de1.tar.bz2 gentoo-e4326bb358ffeff15d34181ce926e886ca132de1.zip |
gnustep-apps/gworkspace: 1.0.0 bump
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'gnustep-apps/gworkspace/gworkspace-1.0.0.ebuild')
-rw-r--r-- | gnustep-apps/gworkspace/gworkspace-1.0.0.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/gnustep-apps/gworkspace/gworkspace-1.0.0.ebuild b/gnustep-apps/gworkspace/gworkspace-1.0.0.ebuild new file mode 100644 index 000000000000..735d643367df --- /dev/null +++ b/gnustep-apps/gworkspace/gworkspace-1.0.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +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" + +DEPEND=">=gnustep-base/gnustep-gui-0.25.0 + gwmetadata? ( + >=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" + use gwmetadata && myconf="${myconf} --enable-gwmetadata" + + egnustep_env + econf ${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 +} |