public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andrew Savchenko" <bircoph@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/e16-epplets/
Date: Fri,  8 Mar 2019 05:35:39 +0000 (UTC)	[thread overview]
Message-ID: <1552023323.68f5b8b148db1d98afa336086c9f3f07e6593cd1.bircoph@gentoo> (raw)

commit:     68f5b8b148db1d98afa336086c9f3f07e6593cd1
Author:     Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  8 05:14:43 2019 +0000
Commit:     Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
CommitDate: Fri Mar  8 05:35:23 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68f5b8b1

x11-plugins/e16-epplets: Re-add e16 epplets to the tree

Re-introduce E16 epplets to the tree. They was formely packaged as
x11-plugins/epplets. The name is changed to conform upstream.

USE flags are added, EAPI bumped to 7. Static libs are removed
since they are useless.

Bug: https://bugs.gentoo.org/658860
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andrew Savchenko <bircoph <AT> gentoo.org>

 x11-plugins/e16-epplets/Manifest                |  1 +
 x11-plugins/e16-epplets/e16-epplets-0.16.ebuild | 49 +++++++++++++++++++++++++
 x11-plugins/e16-epplets/metadata.xml            | 22 +++++++++++
 3 files changed, 72 insertions(+)

diff --git a/x11-plugins/e16-epplets/Manifest b/x11-plugins/e16-epplets/Manifest
new file mode 100644
index 00000000000..5fbf1f3995b
--- /dev/null
+++ b/x11-plugins/e16-epplets/Manifest
@@ -0,0 +1 @@
+DIST e16-epplets-0.16.tar.xz 800796 BLAKE2B 70785fce2949bb5e3b0f950436e63246b576dc2dc13ac392e2d884f913e0f22e68b428b416e20807adfb47ca7a148bb3242efff6dbeac8c734ed645ff3f1c705 SHA512 2cc90dee741a50f54665078db6197d7736d5423419439e640d5170057b80111458dbf4b7c9a92898e96654b1af4a986e5cedb88a565616e70ed0fba6ec82cd9b

diff --git a/x11-plugins/e16-epplets/e16-epplets-0.16.ebuild b/x11-plugins/e16-epplets/e16-epplets-0.16.ebuild
new file mode 100644
index 00000000000..130edb03350
--- /dev/null
+++ b/x11-plugins/e16-epplets/e16-epplets-0.16.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Enlightenment DR16 epplets"
+HOMEPAGE="https://www.enlightenment.org https://sourceforge.net/projects/enlightenment/"
+SRC_URI="mirror://sourceforge/enlightenment/${P}.tar.xz"
+KEYWORDS="~amd64 ~x86"
+
+LICENSE="GPL-2+ BSD public-domain"
+SLOT="0"
+IUSE="cdaudio libgtop opengl"
+
+BDEPEND="
+	virtual/pkgconfig
+"
+CDEPEND="
+	cdaudio? ( media-libs/libcdaudio )
+	libgtop? ( gnome-base/libgtop )
+	opengl? ( media-libs/glu media-libs/mesa )
+	>=media-libs/imlib2-1.2.0
+	x11-libs/libX11
+	x11-libs/libXext
+	x11-wm/e16
+"
+RDEPEND="${CDEPEND}
+	!x11-plugins/epplets
+"
+DEPEND="${CDEPEND}
+	x11-base/xorg-proto
+"
+
+src_configure() {
+	local myconf=(
+		$(use_enable cdaudio)
+		$(use_enable opengl glx)
+		$(use_with libgtop)
+		--disable-esd
+		--disable-static
+		--disable-werror
+	)
+	econf "${myconf[@]}"
+}
+
+src_install() {
+	default
+	find "${ED}"/usr -name '*.la' -delete || die
+}

diff --git a/x11-plugins/e16-epplets/metadata.xml b/x11-plugins/e16-epplets/metadata.xml
new file mode 100644
index 00000000000..8f913313833
--- /dev/null
+++ b/x11-plugins/e16-epplets/metadata.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>bircoph@gentoo.org</email>
+    <name>Andrew Savchenko</name>
+  </maintainer>
+  <use>
+    <flag name="cdaudio">Enable CD Audio support using <pkg>media-libs/libcdaudio</pkg></flag>
+    <flag name="libgtop">Use <pkg>gnome-base/libgtop</pkg> to obtain system load information</flag>
+  </use>
+  <upstream>
+    <remote-id type="sourceforge">enlightenment</remote-id>
+  </upstream>
+  <longdescription>
+    Epplets are small, handy Enlightenment applets, similar to "dockapps"
+    or "applets" for other packages.  The epplets package contains the
+    base epplet API library and header files, as well as the core set of
+    epplets, including CPU monitors, clocks, a mail checker, mixers, a
+    slideshow, a URL grabber, a panel-like toolbar, and more.
+  </longdescription>
+</pkgmetadata>


             reply	other threads:[~2019-03-08  5:35 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-03-08  5:35 Andrew Savchenko [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-07-31 14:54 [gentoo-commits] repo/gentoo:master commit in: x11-plugins/e16-epplets/ Andrew Savchenko
2024-09-21  7:59 Petr Vaněk
2024-09-21  7:59 Petr Vaněk

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=1552023323.68f5b8b148db1d98afa336086c9f3f07e6593cd1.bircoph@gentoo \
    --to=bircoph@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