commit: fcefc4a79d4ef4bd0d31f546de3be1b7f46f1f5f Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org> AuthorDate: Sun Feb 23 22:03:44 2025 +0000 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org> CommitDate: Sun Feb 23 22:15:17 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcefc4a7
gnustep-apps/gworkspace: add 1.1.0 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org> gnustep-apps/gworkspace/Manifest | 1 + gnustep-apps/gworkspace/gworkspace-1.1.0.ebuild | 42 +++++++++++++++++++++++++ 2 files changed, 43 insertions(+) diff --git a/gnustep-apps/gworkspace/Manifest b/gnustep-apps/gworkspace/Manifest index 8ef07e0a4b8b..31aae3fab690 100644 --- a/gnustep-apps/gworkspace/Manifest +++ b/gnustep-apps/gworkspace/Manifest @@ -1 +1,2 @@ DIST gworkspace-1.0.0.tar.gz 2319707 BLAKE2B ff5e81df6f85393a96cd86a052618dfe69990394dd33d1eeddd881910f8c292b8c8fa8a97be75fd8f42b26b1b3f603a7f3cf03e3f25783197859d1943fecc3ee SHA512 41d725c97411ea9818f39af3b334805a08aa7ebae454237c481e0ddce05efdaeb90344bf779cd5640ed2cef1c7cc89e8d8e606db9c5ddcda92060c244ad2cc1a +DIST gworkspace-1.1.0.tar.gz 2345439 BLAKE2B 1b45c0c0651fa95cf1b360fdec5f4a283fa3e87599f9bbc548d20868e150c6729d987bdd1cc94341c264754faff099982ba40e8bf97893f7575e946ded8ebe46 SHA512 be5cbf7360e1024ce861cba79ff5c52ba4a2d4c1c6d3452f14e9b26b36617e11ec2124016c47e129e33bcbb46fcf695053a724c37b9e8f16c4584d95fa555798 diff --git a/gnustep-apps/gworkspace/gworkspace-1.1.0.ebuild b/gnustep-apps/gworkspace/gworkspace-1.1.0.ebuild new file mode 100644 index 000000000000..2f330b296ee4 --- /dev/null +++ b/gnustep-apps/gworkspace/gworkspace-1.1.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit gnustep-2 + +DESCRIPTION="A workspace manager for GNUstep" +HOMEPAGE="https://www.gnustep.org/experience/GWorkspace.html" +SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/usr-apps/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +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 +}
