public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/gkrellm/
Date: Fri, 20 Jan 2023 07:53:29 +0000 (UTC)	[thread overview]
Message-ID: <1674201178.8002a4ab0bdd4dc51fb811e1b07599addf95a44d.juippis@gentoo> (raw)

commit:     8002a4ab0bdd4dc51fb811e1b07599addf95a44d
Author:     Marco Scardovi <mscardovi <AT> icloud <DOT> com>
AuthorDate: Sun Jan  8 21:15:34 2023 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Jan 20 07:52:58 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8002a4ab

app-admin/gkrellm: update EAPI 7 -> 8

Signed-off-by: Marco Scardovi <mscardovi <AT> icloud.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 app-admin/gkrellm/gkrellm-2.3.11-r2.ebuild | 140 +++++++++++++++++++++++++++++
 1 file changed, 140 insertions(+)

diff --git a/app-admin/gkrellm/gkrellm-2.3.11-r2.ebuild b/app-admin/gkrellm/gkrellm-2.3.11-r2.ebuild
new file mode 100644
index 000000000000..0cb8a88d1b58
--- /dev/null
+++ b/app-admin/gkrellm/gkrellm-2.3.11-r2.ebuild
@@ -0,0 +1,140 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop systemd toolchain-funcs
+
+DESCRIPTION="Single process stack of various system monitors"
+HOMEPAGE="http://www.gkrellm.net/"
+if [[ "${PV}" == 9999 ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://git.srcbox.net/gkrellm/gkrellm.git"
+else
+	SRC_URI="http://gkrellm.srcbox.net/releases/${P}.tar.bz2"
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
+fi
+LICENSE="GPL-3+"
+SLOT="2"
+IUSE="gnutls hddtemp lm-sensors nls ntlm ssl X"
+
+RDEPEND="
+	acct-group/gkrellmd
+	acct-user/gkrellmd
+	dev-libs/glib:2
+	hddtemp? ( app-admin/hddtemp )
+	ssl? (
+		gnutls? ( net-libs/gnutls )
+		!gnutls? (
+			dev-libs/openssl:0=
+		)
+	)
+	lm-sensors? ( sys-apps/lm-sensors:= )
+	nls? ( virtual/libintl )
+	ntlm? ( net-libs/libntlm )
+	X? (
+		x11-libs/gdk-pixbuf
+		x11-libs/gtk+:2
+		x11-libs/libICE
+		x11-libs/libSM
+		x11-libs/libX11
+		x11-libs/pango
+		)
+"
+DEPEND="
+	${RDEPEND}
+	nls? ( sys-devel/gettext )
+"
+
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-2.3.5-config.patch"
+	"${FILESDIR}/${PN}-2.3.5-width.patch"
+	"${FILESDIR}/${PN}-2.3.5-sansfont.patch"
+)
+
+DOCS=( Changelog CREDITS README )
+
+pkg_pretend() {
+	if use gnutls && ! use ssl ; then
+		ewarn "You have enabled the \"gnutls\" USE flag but not the \"ssl\" USE flag."
+		ewarn "No ssl backend will be built!"
+	fi
+}
+
+src_prepare() {
+	sed -e 's:-O2 ::' \
+		-e 's:override CC:CFLAGS:' \
+		-e 's:-L/usr/X11R6/lib::' \
+		-i */Makefile || die "sed Makefile(s) failed"
+
+	sed -e "s:/usr/lib:${EPREFIX}/usr/$(get_libdir):" \
+		-e "s:/usr/local/lib:${EPREFIX}/usr/local/$(get_libdir):" \
+		-i src/${PN}.h || die "sed ${PN}.h failed"
+
+	default
+}
+
+src_compile() {
+	TARGET=
+
+	if use X ; then
+		emake \
+			${TARGET} \
+			CC="$(tc-getCC)" \
+			STRIP="" \
+			INSTALLROOT="${EPREFIX}/usr" \
+			INCLUDEDIR="${EPREFIX}/usr/include/gkrellm2" \
+			LOCALEDIR="${EPREFIX}/usr/share/locale" \
+			$(usex nls "" "enable_nls=0") \
+			$(usex lm-sensors "" "without-libsensors=yes") \
+			$(usex ntlm "" "without-ntlm=yes") \
+			$(usex ssl $(usex gnutls 'without-ssl=yes' 'without-gnutls=yes') 'without-ssl=yes without-gnutls=yes')
+	else
+		cd server || die
+		emake \
+			${TARGET} \
+			CC="$(tc-getCC)" \
+			LINK_FLAGS="$LDFLAGS -Wl,-E" \
+			STRIP="" \
+			$(usex nls "" "enable_nls=0") \
+			$(usex lm-sensors "" "without-libsensors=yes")
+	fi
+}
+
+src_install() {
+	if use X ; then
+		emake \
+			install${TARGET:+_}${TARGET} \
+			$(usex nls "" "enable_nls=0") \
+			STRIP="" \
+			INSTALLDIR="${ED}/usr/bin" \
+			INCLUDEDIR="${ED}/usr/include" \
+			LOCALEDIR="${ED}/usr/share/locale" \
+			PKGCONFIGDIR="${ED}/usr/$(get_libdir)/pkgconfig" \
+			MANDIR="${ED}/usr/share/man/man1"
+
+		docinto html
+		dodoc *.html
+
+		newicon src/icon.xpm ${PN}.xpm
+		make_desktop_entry ${PN} GKrellM ${PN}
+	else
+		dobin server/gkrellmd
+
+		insinto /usr/include/gkrellm2
+		doins server/gkrellmd.h
+		doins shared/log.h
+	fi
+
+	newinitd "${FILESDIR}"/gkrellmd.initd gkrellmd
+	newconfd "${FILESDIR}"/gkrellmd.conf gkrellmd
+
+	systemd_dounit "${FILESDIR}"/gkrellmd.service
+
+	insinto /etc
+	doins server/gkrellmd.conf
+
+	einstalldocs
+}


             reply	other threads:[~2023-01-20  7:53 UTC|newest]

Thread overview: 58+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-20  7:53 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-11-25  5:28 [gentoo-commits] repo/gentoo:master commit in: app-admin/gkrellm/ Sam James
2023-03-12  9:23 Viorel Munteanu
2023-03-09  9:02 Arthur Zamarin
2023-03-09  9:00 Sam James
2023-03-09  8:59 Sam James
2023-03-09  8:54 Sam James
2023-03-09  8:54 Sam James
2023-03-09  7:38 Arthur Zamarin
2023-02-03 10:57 Sam James
2023-02-03 10:57 Sam James
2023-02-03  5:50 Sam James
2023-02-03  5:44 Sam James
2023-02-03  5:44 Sam James
2023-02-03  5:28 Sam James
2023-02-03  5:28 Sam James
2023-02-03  5:17 Sam James
2023-01-20  7:53 Joonas Niilola
2023-01-20  7:53 Joonas Niilola
2023-01-20  7:53 Joonas Niilola
2022-07-02  9:38 Matthew Smith
2022-07-02  9:38 Matthew Smith
2021-12-02 20:35 Steve Arnold
2021-04-30  9:17 Mikle Kolyada
2020-09-03 19:31 Lars Wendler
2020-03-02 12:29 Agostino Sarubbo
2020-03-02 12:28 Agostino Sarubbo
2020-03-02 11:34 Sergei Trofimovich
2020-03-02 11:22 Sergei Trofimovich
2020-03-02 11:04 Sergei Trofimovich
2020-02-28 17:50 Agostino Sarubbo
2020-02-28 14:12 Agostino Sarubbo
2020-02-08 21:40 Mart Raudsepp
2019-09-12 14:28 Michał Górny
2019-08-13 16:40 Lars Wendler
2019-08-13 16:40 Lars Wendler
2019-07-25 14:32 Lars Wendler
2019-06-26  8:36 Lars Wendler
2019-02-23 10:42 Lars Wendler
2018-10-22 14:21 Lars Wendler
2018-10-22 14:16 Lars Wendler
2017-06-10 15:10 Agostino Sarubbo
2017-04-27 11:23 Agostino Sarubbo
2017-04-18  6:28 Jeroen Roovers
2017-04-04 19:02 Michael Weber
2017-04-01 16:06 Agostino Sarubbo
2017-03-28 10:34 Michael Weber
2017-03-28  9:56 Agostino Sarubbo
2016-10-24  9:30 Lars Wendler
2016-10-23 22:07 Lars Wendler
2016-10-12  8:59 Lars Wendler
2016-09-08  7:20 Lars Wendler
2016-06-04 16:11 Lars Wendler
2016-04-25 19:20 Austin English
2016-03-23 21:23 Stephen Klimaszewski
2016-03-21 21:27 Anthony G. Basile
2015-10-04 19:36 Julian Ospald
2015-09-11 20:30 Lars Wendler

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=1674201178.8002a4ab0bdd4dc51fb811e1b07599addf95a44d.juippis@gentoo \
    --to=juippis@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