public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Conrad Kostecki" <conikost@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/
Date: Sun, 21 Jul 2024 15:12:10 +0000 (UTC)	[thread overview]
Message-ID: <1721574347.88292ec69ea19e136adb91fcaeea5aebe4a83fd2.conikost@gentoo> (raw)

commit:     88292ec69ea19e136adb91fcaeea5aebe4a83fd2
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sat Jul 20 11:07:47 2024 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Jul 21 15:05:47 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88292ec6

x11-wm/jwm: add 2.4.3

Closes: https://bugs.gentoo.org/912594
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 x11-wm/jwm/Manifest         |  1 +
 x11-wm/jwm/jwm-2.4.3.ebuild | 82 +++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 83 insertions(+)

diff --git a/x11-wm/jwm/Manifest b/x11-wm/jwm/Manifest
index 584cd4065993..3cfc7e956fa9 100644
--- a/x11-wm/jwm/Manifest
+++ b/x11-wm/jwm/Manifest
@@ -1 +1,2 @@
 DIST jwm-2.4.2.tar.xz 316000 BLAKE2B 7a0a1c5f60cb3554c999ce3d00d94af4d58ac4bdfcbaaa13a7b675273b4c5d0058c7c85bec950fa91d33a46a89f0b83faf2ab2cda0430a741884e2fdfd8116a7 SHA512 2669c3e2ab2d9a5539d02559108a2bc601bb2209de03dc15057a65c14b5e1268cc58009f4102c4d90302c0705ada5578997a3644c736a46a7e8cf13766cc92fe
+DIST jwm-2.4.3.tar.xz 317192 BLAKE2B d0b0ff1088ab3390a90c054162ea2c2fe782b61f28b3fdb28464ace362143fdc94e25ec82f7f4178b86a26c9315cdfcf9a81bff2e76bb5e3d62f88968a4ee80b SHA512 35b8a6da9614f11881013aa77c36ee88ce9a213f056e797231b772132beb841d54094809b6a476383999bddeccf61451f72cd166309dd79c223b634cf5d1e69e

diff --git a/x11-wm/jwm/jwm-2.4.3.ebuild b/x11-wm/jwm/jwm-2.4.3.ebuild
new file mode 100644
index 000000000000..08db4c809545
--- /dev/null
+++ b/x11-wm/jwm/jwm-2.4.3.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit wrapper
+
+DESCRIPTION="Very fast and lightweight still powerful window manager for X"
+HOMEPAGE="https://joewing.net/projects/jwm/"
+SRC_URI="https://github.com/joewing/${PN}/releases/download/v${PV}/${P}.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86"
+IUSE="svg debug iconv jpeg nls png pango truetype xinerama xpm"
+
+RDEPEND="dev-libs/expat
+	x11-libs/libXau
+	x11-libs/libXdmcp
+	x11-libs/libXext
+	x11-libs/libXmu
+	x11-libs/libXrender
+	svg? (
+		x11-libs/cairo
+		gnome-base/librsvg
+	)
+	iconv? ( virtual/libiconv )
+	jpeg? ( media-libs/libjpeg-turbo )
+	nls? ( sys-devel/gettext
+		virtual/libintl )
+	pango? ( x11-libs/pango )
+	png? ( media-libs/libpng:0= )
+	truetype? ( x11-libs/libXft )
+	xinerama? ( x11-libs/libXinerama )
+	xpm? ( x11-libs/libXpm )"
+DEPEND="${RDEPEND}
+	x11-base/xorg-proto"
+BDEPEND="virtual/pkgconfig"
+
+src_configure() {
+	local myeconfargs=(
+		$(use_enable svg cairo)
+		$(use_enable svg rsvg)
+		$(use_enable debug)
+		$(use_enable jpeg)
+		$(use_enable nls)
+		$(use_enable pango)
+		$(use_enable png)
+		$(use_enable truetype xft)
+		$(use_enable xinerama)
+		$(use_enable xpm)
+		$(use_with iconv libiconv-prefix /usr)
+		$(use_with nls libintl-prefix /usr)
+		--enable-shape
+		--enable-xrender
+		--disable-rpath
+	)
+
+	econf "${myeconfargs[@]}"
+}
+
+src_install() {
+	dodir /etc
+	dodir /usr/bin
+	dodir /usr/share/man
+
+	default
+
+	make_wrapper "${PN}" "/usr/bin/${PN}" "" "" "/etc/X11/Sessions"
+
+	insinto "/usr/share/xsessions"
+	doins "${FILESDIR}"/jwm.desktop
+
+	dodoc README.md README.upgrading example.jwmrc CONTRIBUTING.md
+}
+
+pkg_postinst() {
+	einfo "JWM can be configured system-wide with ${EROOT}/etc/system.jwmrc"
+	einfo "or per-user by creating a configuration file in ~/.jwmrc"
+	einfo
+	einfo "An example file can be found in ${EROOT}/usr/share/doc/${PF}/"
+}


             reply	other threads:[~2024-07-21 15:12 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-07-21 15:12 Conrad Kostecki [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-24 11:54 [gentoo-commits] repo/gentoo:master commit in: x11-wm/jwm/ Petr Vaněk
2024-11-23 18:04 Sam James
2024-11-23 12:24 Arthur Zamarin
2024-07-21 15:12 Conrad Kostecki
2024-07-21 15:12 Conrad Kostecki
2022-09-30  9:26 Andreas Sturmlechner
2022-09-30  2:20 Sam James
2022-08-10  5:03 Sam James
2022-08-10  5:03 Sam James
2021-04-17  2:05 Sam Jorna
2021-04-16 11:23 Sam James
2021-04-11 13:57 Sam Jorna
2021-04-11 13:57 Sam Jorna
2021-03-29  7:56 Sam Jorna
2019-12-16  8:48 Sam Jorna
2019-09-11 16:21 Michał Górny
2018-04-11  3:21 Sam Jorna
2016-11-08 21:30 Sam Jorna
2016-05-16  9:07 Sam Jorna
2016-05-16  6:58 Sam Jorna
2016-03-16  0:39 Sam Jorna
2016-03-14 23:37 Sam Jorna
2016-02-15  5:07 Jeroen Roovers
2016-01-17 17:14 Agostino Sarubbo
2016-01-15  9:03 Agostino Sarubbo
2016-01-10  8:21 Amy Winston
2015-10-12 11:38 Amy Winston
2015-10-11  7:57 Jeroen Roovers
2015-10-11  7:57 Jeroen Roovers
2015-10-11  7:57 Jeroen Roovers
2015-10-10 13:16 Amy Winston
2015-10-09 14:45 Ian Delaney

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1721574347.88292ec69ea19e136adb91fcaeea5aebe4a83fd2.conikost@gentoo \
    --to=conikost@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox