diff options
-rw-r--r-- | gnome-extra/eiciel/Manifest | 1 | ||||
-rw-r--r-- | gnome-extra/eiciel/eiciel-0.9.12.1-r1.ebuild | 40 | ||||
-rw-r--r-- | gnome-extra/eiciel/files/eiciel-0.9.12.1-xattr-header.patch | 41 |
3 files changed, 0 insertions, 82 deletions
diff --git a/gnome-extra/eiciel/Manifest b/gnome-extra/eiciel/Manifest index 7802f46daf13..5c22cb7452b6 100644 --- a/gnome-extra/eiciel/Manifest +++ b/gnome-extra/eiciel/Manifest @@ -1,2 +1 @@ -DIST eiciel-0.9.12.1.tar.bz2 723727 BLAKE2B e32f3af9f4664610169fc718a9d274ae9d91c5d0d56a6be9872da1c105b349584300879742b753a02ad621cdc597591c52f47d705222ad52cb37b0750616a553 SHA512 f54fbb149eed7f8fd534b77ec5e2d0f579c68a39afd7417a2298d75c7e95c459b49fc8ccb66d0188956ffaadf3bcc8a3eb048425cb82fc875573eb131f4b0494 DIST eiciel-0.9.13.tar.bz2 707838 BLAKE2B 30702b20482984885dfdb222e631f7572f3199b93509baa48762c0925b1fd78e1601a1279e7454543ddc32e813288cd01f0fdc2cb0c2eb0c5812cefcf8cac29f SHA512 7b5fde27e2d28c69f02092896bb0065372f93319d8ff8ad285b8b0e52acbe6d43b96f7dc215d7210602c6f766b48d2e2c66361dd28ea0f567ed6faf3bbcfdd14 diff --git a/gnome-extra/eiciel/eiciel-0.9.12.1-r1.ebuild b/gnome-extra/eiciel/eiciel-0.9.12.1-r1.ebuild deleted file mode 100644 index 1ffc189370d6..000000000000 --- a/gnome-extra/eiciel/eiciel-0.9.12.1-r1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -GNOME2_EAUTORECONF="yes" -GNOME2_LA_PUNT="yes" - -inherit gnome2 - -DESCRIPTION="ACL editor for GNOME, with Nautilus extension" -HOMEPAGE="https://rofi.roger-ferrer.org/eiciel/" -SRC_URI="https://rofi.roger-ferrer.org/eiciel/download/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="nautilus xattr" - -RDEPEND=" - >=sys-apps/acl-2.2.32 - dev-cpp/gtkmm:3.0 - nautilus? ( >=gnome-base/nautilus-3 ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig - >=sys-devel/gettext-0.18.1 -" - -PATCHES=( - # attr/xattr.h is deprecated. Use sys/xattr.h instead (from 'master') - "${FILESDIR}"/${P}-xattr-header.patch -) - -src_configure() { - gnome2_src_configure \ - --disable-static \ - --with-gnome-version=3 \ - $(use_enable nautilus nautilus-extension) \ - $(use_enable xattr user-attributes) -} diff --git a/gnome-extra/eiciel/files/eiciel-0.9.12.1-xattr-header.patch b/gnome-extra/eiciel/files/eiciel-0.9.12.1-xattr-header.patch deleted file mode 100644 index 1b866f4bb75f..000000000000 --- a/gnome-extra/eiciel/files/eiciel-0.9.12.1-xattr-header.patch +++ /dev/null @@ -1,41 +0,0 @@ -From cf7e97ece39994d9c219bf3d4f3f70815e1c0867 Mon Sep 17 00:00:00 2001 -From: Lars Wendler <polynomial-c@gentoo.org> -Date: Tue, 15 May 2018 13:40:37 +0200 -Subject: [PATCH] attr/xattr.h is deprecated. Use sys/xattr.h instead - -See also: -http://git.savannah.nongnu.org/cgit/attr.git/commit/?id=7921157890d07858d092f4003ca4c6bae9fd2c38 ---- - configure.ac | 2 +- - src/xattr_manager.hpp | 5 ++++- - 2 files changed, 5 insertions(+), 2 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 040e88f..bc769f3 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -156,7 +156,7 @@ fi - - if test x$enable_eua = xyes; - then -- AC_CHECK_HEADERS([attr/xattr.h], [], AC_MSG_ERROR([This header is mandatory for extended user attributes support]), []) -+ AC_CHECK_HEADERS([sys/xattr.h], [], AC_MSG_ERROR([This header is mandatory for extended user attributes support]), []) - AC_DEFINE([ENABLE_USER_XATTR], [1], [Enables user extended attributes support]) - fi - AM_CONDITIONAL(ENABLE_USER_XATTR, test x$enable_eua = xyes) -diff --git a/src/xattr_manager.hpp b/src/xattr_manager.hpp -index 5f59e17..3d41443 100644 ---- a/src/xattr_manager.hpp -+++ b/src/xattr_manager.hpp -@@ -26,7 +26,10 @@ - #include <sys/stat.h> - #include <unistd.h> - --#include <attr/xattr.h> -+#include <sys/xattr.h> -+#ifndef ENOATTR -+#define ENOATTR ENODATA -+#endif - - #include <string> - #include <cstring> |