From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6CBA458974 for ; Tue, 26 Jan 2016 17:42:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79A9C21C002; Tue, 26 Jan 2016 17:42:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 138BC21C002 for ; Tue, 26 Jan 2016 17:42:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2D5A333BEBE for ; Tue, 26 Jan 2016 17:42:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0161BCF7 for ; Tue, 26 Jan 2016 17:41:57 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1453830100.925947b6fc525806d99345928818fb5f377755cf.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libindicate/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libindicate/libindicate-12.10.1-r1.ebuild X-VCS-Directories: dev-libs/libindicate/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 925947b6fc525806d99345928818fb5f377755cf X-VCS-Branch: master Date: Tue, 26 Jan 2016 17:41:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8c745020-df1c-4966-bffb-7988dc70379a X-Archives-Hash: 5c771c56e5fd59dc8bf870bbd2f4369e commit: 925947b6fc525806d99345928818fb5f377755cf Author: Michael Palimaka gentoo org> AuthorDate: Tue Jan 26 16:56:42 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Tue Jan 26 17:41:40 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=925947b6 dev-libs/libindicate: remove old Package-Manager: portage-2.2.27 dev-libs/libindicate/libindicate-12.10.1-r1.ebuild | 74 ---------------------- 1 file changed, 74 deletions(-) diff --git a/dev-libs/libindicate/libindicate-12.10.1-r1.ebuild b/dev-libs/libindicate/libindicate-12.10.1-r1.ebuild deleted file mode 100644 index 0a20825..0000000 --- a/dev-libs/libindicate/libindicate-12.10.1-r1.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -VALA_MIN_API_VERSION="0.16" -VALA_USE_DEPEND="vapigen" - -inherit autotools eutils flag-o-matic vala - -DESCRIPTION="A library to raise flags on DBus for other components of the desktop to pick up and visualize" -HOMEPAGE="https://launchpad.net/libindicate" -SRC_URI="https://launchpad.net/${PN}/${PV%.*}/${PV}/+download/${P}.tar.gz" - -LICENSE="LGPL-2.1 LGPL-3" -SLOT="3" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86" -IUSE="gtk +introspection" - -RESTRICT="test" # consequence of the -no-mono.patch - -RDEPEND=">=dev-libs/dbus-glib-0.100 - >=dev-libs/glib-2.30 - >=dev-libs/libdbusmenu-0.6.2[introspection?] - dev-libs/libxml2 - gtk? ( - dev-libs/libdbusmenu[gtk3] - >=x11-libs/gtk+-3.2:3 - ) - introspection? ( >=dev-libs/gobject-introspection-1 ) - !<${CATEGORY}/${PN}-0.6.1-r201" -EAUTORECONF_DEPEND="dev-util/gtk-doc-am - gnome-base/gnome-common" -DEPEND="${RDEPEND} - ${EAUTORECONF_DEPEND} - $(vala_depend) - app-text/gnome-doc-utils - virtual/pkgconfig" - -src_prepare() { - vala_src_prepare - - epatch "${FILESDIR}"/${PN}-0.6.1-no-mono.patch - - sed -i -e "s:vapigen:vapigen-$(vala_best_api_version):" configure.ac || die - sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die - - eautoreconf -} - -src_configure() { - append-flags -Wno-error - - # python bindings are only for GTK+-2.x - econf \ - --docdir=/usr/share/doc/${PF} \ - --disable-silent-rules \ - --disable-static \ - $(use_enable gtk) \ - $(use_enable introspection) \ - --disable-python \ - --disable-scrollkeeper \ - --with-gtk=3 \ - --with-html-dir=/usr/share/doc/${PF}/html -} - -src_install() { - emake DESTDIR="${D}" install - dodoc AUTHORS ChangeLog NEWS - - nonfatal dosym /usr/share/doc/${PF}/html/${PN} /usr/share/gtk-doc/html/${PN} - - prune_libtool_files -}