summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-03-17 18:20:37 +0100
committerMichał Górny <mgorny@gentoo.org>2023-03-17 18:26:57 +0100
commit25c01956ab25c70c4e42c6eeda0af0b812b816c7 (patch)
treec94fe56efe3cdf141ac3b4bc87a0d19b82885e1c
parentdev-python/doublex-expects: Remove old (diff)
downloadgentoo-25c01956ab25c70c4e42c6eeda0af0b812b816c7.tar.gz
gentoo-25c01956ab25c70c4e42c6eeda0af0b812b816c7.tar.bz2
gentoo-25c01956ab25c70c4e42c6eeda0af0b812b816c7.zip
xfce-base/libxfce4ui: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--xfce-base/libxfce4ui/Manifest1
-rw-r--r--xfce-base/libxfce4ui/libxfce4ui-4.18.1.ebuild76
2 files changed, 0 insertions, 77 deletions
diff --git a/xfce-base/libxfce4ui/Manifest b/xfce-base/libxfce4ui/Manifest
index 02c048d96d5b..41b3ef0921ed 100644
--- a/xfce-base/libxfce4ui/Manifest
+++ b/xfce-base/libxfce4ui/Manifest
@@ -1,2 +1 @@
-DIST libxfce4ui-4.18.1.tar.bz2 910047 BLAKE2B 196ded69668b27fd10d99042789e1b2b38eb1a54df6015d1c268dabbec747469d0883087c2f2dcc121f44091a4e19857d51e607ab50fe2aaa20b3b3bf10ad760 SHA512 3bd8a52755c8542ff6952bb91bf57203605991963865f3d88896850ac5b98aec649c229d8743c1d472e6ac19ada853c428c1706aad0613a951aca1c001d9977d
DIST libxfce4ui-4.18.2.tar.bz2 901949 BLAKE2B 17bf0541646735ec54da5f322d858896fa2fd132fe93864372a67d4936b4467def749f4a0dd4f3d23ecb7a2b3843367f88ccf74b7e040e7ad6f6c15fec45055f SHA512 758466e2e3096791b99e1a00c9f499d95327581ad336fc1ab0d51e3d150206d522f44c2e6053b0032499dd0cb337510cf6940dc77499cef3ecbb484de7787457
diff --git a/xfce-base/libxfce4ui/libxfce4ui-4.18.1.ebuild b/xfce-base/libxfce4ui/libxfce4ui-4.18.1.ebuild
deleted file mode 100644
index 93c505782b0c..000000000000
--- a/xfce-base/libxfce4ui/libxfce4ui-4.18.1.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit xdg-utils vala
-
-DESCRIPTION="Unified widget and session management libs for Xfce"
-HOMEPAGE="
- https://docs.xfce.org/xfce/libxfce4ui/start
- https://gitlab.xfce.org/xfce/libxfce4ui/
-"
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
-
-LICENSE="LGPL-2+ GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="glade +introspection startup-notification system-info vala"
-REQUIRED_USE="vala? ( introspection )"
-
-DEPEND="
- >=dev-libs/glib-2.66.0
- >=x11-libs/gtk+-3.24.0:3[introspection?,X]
- x11-libs/libX11
- x11-libs/libICE
- x11-libs/libSM
- >=xfce-base/libxfce4util-4.17.2:=[introspection?]
- >=xfce-base/xfconf-4.12:=
- glade? ( dev-util/glade:3.10 )
- introspection? ( >=dev-libs/gobject-introspection-1.66:= )
- startup-notification? ( x11-libs/startup-notification )
- system-info? (
- dev-libs/libgudev
- gnome-base/libgtop
- >=media-libs/libepoxy-1.2
- )
-"
-RDEPEND="
- ${DEPEND}
-"
-BDEPEND="
- dev-lang/perl
- dev-util/intltool
- sys-devel/gettext
- virtual/pkgconfig
- vala? ( $(vala_depend) )
-"
-
-src_configure() {
- local myconf=(
- $(use_enable introspection)
- $(use_enable system-info glibtop)
- $(use_enable system-info epoxy)
- $(use_enable system-info gudev)
- $(use_enable startup-notification)
- $(use_enable vala)
- $(use_enable glade gladeui2)
- --with-vendor-info=Gentoo
- )
-
- use vala && vala_setup
- econf "${myconf[@]}"
-}
-
-src_install() {
- emake -j1 DESTDIR="${D}" install
- find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
- xdg_icon_cache_update
-}
-
-pkg_postrm() {
- xdg_icon_cache_update
-}