From e6802950b381251cf9c7a0b8cb22cc0c6650c1dc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Bartoszkiewicz?= Date: Sun, 15 Oct 2017 23:44:07 +0200 Subject: [PATCH] =?utf8?q?Usuni=C4=99cie=20app-portage/eix?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- app-portage/eix/eix-9999.ebuild | 114 -------------------------------- 1 file changed, 114 deletions(-) delete mode 100644 app-portage/eix/eix-9999.ebuild diff --git a/app-portage/eix/eix-9999.ebuild b/app-portage/eix/eix-9999.ebuild deleted file mode 100644 index 9a167dd..0000000 --- a/app-portage/eix/eix-9999.ebuild +++ /dev/null @@ -1,114 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -EGIT_REPO_URI="https://github.com/vaeth/eix.git" - -WANT_LIBTOOL="none" - -PLOCALES="de ru" -inherit autotools git-r3 bash-completion-r1 l10n systemd flag-o-matic - -DESCRIPTION="Search and query ebuilds" -HOMEPAGE="https://github.com/vaeth/eix/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="" -IUSE="doc nls sqlite" - -BOTHDEPEND="nls? ( virtual/libintl ) - sqlite? ( >=dev-db/sqlite-3:= )" -RDEPEND="${BOTHDEPEND} - >=app-shells/push-2.0-r1 - >=app-shells/quoter-3.0_p2-r1" -DEPEND="${BOTHDEPEND} - doc? ( dev-python/docutils ) - >=sys-devel/gettext-0.18.3" - -pkg_setup() { - # remove stale cache file to prevent collisions - local old_cache=${EROOT%/}/var/cache/${PN} - if [[ -f ${old_cache} ]]; then - rm "${old_cache}" || die - fi -} - -src_prepare() { - default - sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die - - sed -e "/eixf_source=/s:push.sh:cat \"${EROOT}usr/share/push/push.sh\":" \ - -e "/eixf_source=/s:quoter_pipe.sh:cat \"${EROOT}usr/share/quoter/quoter_pipe.sh\":" \ - -i src/eix-functions.sh.in || die - sed -e "s:'\$(bindir)/eix-functions.sh':cat \\\\\"${EROOT}usr/share/eix/eix-functions.sh\\\\\":" \ - -i src/Makefile.am || die - eautoreconf -} - -src_configure() { - local myconf=( - $(use_enable nls) - $(use_with doc extra-doc) - $(use_with sqlite) - - # default configuration - $(use_with prefix always-accept-keywords) - --with-dep-default - --with-required-use-default - - # paths - --with-portage-rootpath="${ROOTPATH}" - --with-eprefix-default="${EPREFIX}" - - # build a single executable with symlinks - --disable-separate-binaries - --disable-separate-tools - - # used purely to control/disrespect *FLAGS - --disable-debugging - --disable-new_dialect - --disable-optimization - --disable-strong-optimization - --disable-security - --disable-nopie-security - --disable-strong-security - ) - - # https://github.com/vaeth/eix/issues/35 - append-cxxflags -std=c++11 - - econf "${myconf[@]}" -} - -src_install() { - default - dobashcomp bash/eix - systemd_dotmpfilesd tmpfiles.d/eix.conf - - insinto /usr/share/${PN} - doins "${ED}"/usr/bin/eix-functions.sh - rm -r "${ED}"/usr/bin/eix-functions.sh || die - - keepdir /var/cache/eix -} - -pkg_postinst() { - if ! use prefix; then - # note: if this is done in src_install(), portage:portage - # ownership may be reset to root - chown portage:portage "${EROOT%/}"/var/cache/eix || die - fi - - local obs=${EROOT%/}/var/cache/eix.previous - if [[ -f ${obs} ]]; then - ewarn "Found obsolete ${obs}, please remove it" - fi -} - -pkg_postrm() { - if [[ ! -n ${REPLACED_BY_VERSION} ]]; then - rm -rf "${EROOT%/}/var/cache/${PN}" || die - fi -} -- 2.43.2