summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-03-25 18:05:29 +0200
committerMichał Górny <mgorny@gentoo.org>2018-03-25 19:27:07 +0200
commit2b9ee8287093d95a41a80aba7033eec29ae8aa7b (patch)
tree69a698e13d55842eb060728f395af2b3abf6a784 /xfce-base/xfconf
parentxfce-base/xfce4-settings: Drop old (diff)
downloadgentoo-2b9ee8287093d95a41a80aba7033eec29ae8aa7b.tar.gz
gentoo-2b9ee8287093d95a41a80aba7033eec29ae8aa7b.tar.bz2
gentoo-2b9ee8287093d95a41a80aba7033eec29ae8aa7b.zip
xfce-base/xfconf: Drop old
Diffstat (limited to 'xfce-base/xfconf')
-rw-r--r--xfce-base/xfconf/Manifest1
-rw-r--r--xfce-base/xfconf/xfconf-4.12.0-r1.ebuild66
2 files changed, 0 insertions, 67 deletions
diff --git a/xfce-base/xfconf/Manifest b/xfce-base/xfconf/Manifest
index 9083c3f10bec..51d7fd747019 100644
--- a/xfce-base/xfconf/Manifest
+++ b/xfce-base/xfconf/Manifest
@@ -1,3 +1,2 @@
-DIST xfconf-4.12.0.tar.bz2 542544 BLAKE2B 4a2e5fbdbc375ee97c7730b720574495b22cf2e1549cad674d21976e7b021a2d987381b86fbec593a1d0eaf2a99484c2f0d716ada6cba754f6a5487da6696a5b SHA512 60cc37a7207b0486f7f2de665870facf8e339241df344d7540082f3db447b3ac88bddd306d6a09a3868878cb477d1696491c71470052ef56cb649d773bd55b56
DIST xfconf-4.12.1.tar.bz2 564131 BLAKE2B 893210f19d743559b0879e9e38004400c8f8af0b6b8c72db4602360eee2ee7058f074e86f2f9e4397f6e728eae0148d3621424461d53e84ad768d7f0673ed08a SHA512 114dba6a78d43b25eebfd9ef78beec75391b0c77e736e66ae2b04fe97dc281f93d05467ddfdd63a5067f44de135347564fe55928ae7de72f0984339db411d77f
DIST xfconf-4.13.4.tar.bz2 598700 BLAKE2B 05d4f7e360359e8d56b8a4cf6a39f22506113a758861fb730d9fb858f92554af3e28c49a21ceb246f8503087bec1032d430b16df999f7db22c56d3d3cb12ad68 SHA512 17c4c2ff4b02eef2d3040c21120e34863e4b38794d7670e42a31e4062a0ba0d4064d4239e8166a2c05d5d316773fdc96ae6098e78ab9b058b9c5a31f94c7f3dc
diff --git a/xfce-base/xfconf/xfconf-4.12.0-r1.ebuild b/xfce-base/xfconf/xfconf-4.12.0-r1.ebuild
deleted file mode 100644
index 33870abdf435..000000000000
--- a/xfce-base/xfconf/xfconf-4.12.0-r1.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit xfconf
-
-DESCRIPTION="A configuration management system for Xfce"
-HOMEPAGE="https://docs.xfce.org/xfce/xfconf/start"
-SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris"
-IUSE="debug perl"
-
-RDEPEND=">=dev-libs/dbus-glib-0.98
- >=dev-libs/glib-2.30
- >=xfce-base/libxfce4util-4.10
- perl? (
- dev-lang/perl:=[-build(-)]
- dev-perl/glib-perl
- )"
-DEPEND="${RDEPEND}
- dev-util/intltool
- virtual/pkgconfig
- sys-devel/gettext
- perl? (
- dev-perl/ExtUtils-Depends
- dev-perl/ExtUtils-PkgConfig
- )"
-
-pkg_setup() {
- XFCONF=(
- $(use_enable perl perl-bindings)
- $(xfconf_use_debug)
- $(use_enable debug checks)
- --with-perl-options=INSTALLDIRS=vendor
- )
-
- [[ ${CHOST} == *-darwin* ]] && XFCONF+=( --disable-visibility ) #366857
-
- DOCS=( AUTHORS ChangeLog NEWS TODO )
-}
-
-src_prepare() {
- # https://bugzilla.xfce.org/show_bug.cgi?id=9556
- cat <<-EOF >> po/POTFILES.skip
- xfconf-perl/xs/Xfconf.c
- xfconf-perl/xs/XfconfBinding.c
- xfconf-perl/xs/XfconfChannel.c
- EOF
- xfconf_src_prepare
-}
-
-src_compile() {
- emake OTHERLDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
- xfconf_src_install
-
- if use perl; then
- find "${ED}" -type f -name perllocal.pod -exec rm -f {} +
- find "${ED}" -depth -mindepth 1 -type d -empty -exec rm -rf {} +
- fi
-}