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 126FE59CAF for ; Thu, 7 Apr 2016 12:45:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8185921C003; Thu, 7 Apr 2016 12:45:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 18BD321C003 for ; Thu, 7 Apr 2016 12:45:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C2D2D340E94 for ; Thu, 7 Apr 2016 12:45:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 236EECA for ; Thu, 7 Apr 2016 12:45:23 +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: <1460033112.0723b744e5b6ce095b43c1556b12a06914d70925.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libappindicator/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libappindicator/libappindicator-12.10.0-r1.ebuild X-VCS-Directories: dev-libs/libappindicator/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 0723b744e5b6ce095b43c1556b12a06914d70925 X-VCS-Branch: master Date: Thu, 7 Apr 2016 12:45:23 +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: 8d73f161-cfb6-4653-aa54-5b10a99dbedf X-Archives-Hash: 7746e5e56d0d8a7161598803419a6bf2 commit: 0723b744e5b6ce095b43c1556b12a06914d70925 Author: Michael Palimaka gentoo org> AuthorDate: Thu Apr 7 12:44:54 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Thu Apr 7 12:45:12 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0723b744 dev-libs/libappindicator: remove old Package-Manager: portage-2.2.28 .../libappindicator-12.10.0-r1.ebuild | 59 ---------------------- 1 file changed, 59 deletions(-) diff --git a/dev-libs/libappindicator/libappindicator-12.10.0-r1.ebuild b/dev-libs/libappindicator/libappindicator-12.10.0-r1.ebuild deleted file mode 100644 index 77d893a..0000000 --- a/dev-libs/libappindicator/libappindicator-12.10.0-r1.ebuild +++ /dev/null @@ -1,59 +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 eutils vala - -DESCRIPTION="A library to allow applications to export a menu into the Unity Menu bar" -HOMEPAGE="https://launchpad.net/libappindicator" -SRC_URI="https://launchpad.net/${PN}/${PV%.*}/${PV}/+download/${P}.tar.gz" - -LICENSE="LGPL-2.1 LGPL-3" -SLOT="3" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="+introspection" - -RDEPEND=" - >=dev-libs/dbus-glib-0.98 - >=dev-libs/glib-2.26:2 - >=dev-libs/libdbusmenu-0.6.2[gtk3] - >=dev-libs/libindicator-12.10.0:3 - >=x11-libs/gtk+-3.2:3 - introspection? ( >=dev-libs/gobject-introspection-1 ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig - introspection? ( $(vala_depend) ) -" - -src_prepare() { - # Don't use -Werror - sed -i -e 's/ -Werror//' {src,tests}/Makefile.{am,in} || die - - # Disable MONO for now because of https://bugs.gentoo.org/382491 - sed -i -e '/^MONO_REQUIRED_VERSION/s:=.*:=9999:' configure || die - use introspection && vala_src_prepare -} - -src_configure() { - # https://bugs.gentoo.org/409133 - export APPINDICATOR_PYTHON_CFLAGS=' ' - export APPINDICATOR_PYTHON_LIBS=' ' - - econf \ - --disable-silent-rules \ - --disable-static \ - --with-html-dir=/usr/share/doc/${PF}/html \ - --with-gtk=3 -} - -src_install() { - emake -j1 DESTDIR="${D}" install - dodoc AUTHORS ChangeLog - - prune_libtool_files -}