Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libnotify/
Date: Thu, 29 Sep 2016 15:51:58
Message-Id: 1475164299.d3cd42f101e68626f1b8061907b34e159ea806d9.kensington@gentoo
1 commit: d3cd42f101e68626f1b8061907b34e159ea806d9
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 29 15:44:30 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 29 15:51:39 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3cd42f1
7
8 x11-libs/libnotify: remove old
9
10 Package-Manager: portage-2.3.1
11
12 x11-libs/libnotify/libnotify-0.7.6-r1.ebuild | 68 ----------------------------
13 1 file changed, 68 deletions(-)
14
15 diff --git a/x11-libs/libnotify/libnotify-0.7.6-r1.ebuild b/x11-libs/libnotify/libnotify-0.7.6-r1.ebuild
16 deleted file mode 100644
17 index f5373eb..00000000
18 --- a/x11-libs/libnotify/libnotify-0.7.6-r1.ebuild
19 +++ /dev/null
20 @@ -1,68 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -inherit autotools eutils gnome.org multilib-minimal
27 -
28 -DESCRIPTION="A library for sending desktop notifications"
29 -HOMEPAGE="https://git.gnome.org/browse/libnotify"
30 -
31 -LICENSE="LGPL-2.1+"
32 -SLOT="0"
33 -KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
34 -IUSE="+introspection test"
35 -
36 -COMMON_DEPEND="app-eselect/eselect-notify-send
37 - >=dev-libs/glib-2.26:2[${MULTILIB_USEDEP}]
38 - x11-libs/gdk-pixbuf:2[${MULTILIB_USEDEP}]
39 - introspection? ( >=dev-libs/gobject-introspection-1.32 )"
40 -RDEPEND="${COMMON_DEPEND}
41 - abi_x86_32? (
42 - !<=app-emulation/emul-linux-x86-gtklibs-20140508-r4
43 - !app-emulation/emul-linux-x86-gtklibs[-abi_x86_32(-)]
44 - )"
45 -DEPEND="${COMMON_DEPEND}
46 - >=dev-libs/gobject-introspection-common-1.32
47 - >=dev-util/gtk-doc-am-1.14
48 - virtual/pkgconfig
49 - test? ( x11-libs/gtk+:3[${MULTILIB_USEDEP}] )"
50 -PDEPEND="virtual/notification-daemon"
51 -
52 -DOCS=( AUTHORS ChangeLog NEWS )
53 -
54 -src_prepare() {
55 - sed -i -e 's:noinst_PROG:check_PROG:' tests/Makefile.am || die
56 -
57 - if ! use test; then
58 - sed -i -e '/PKG_CHECK_MODULES(TESTS/d' configure.ac || die
59 - fi
60 -
61 - eautoreconf
62 -}
63 -
64 -multilib_src_configure() {
65 - ECONF_SOURCE=${S} econf \
66 - --disable-static \
67 - $(multilib_native_use_enable introspection)
68 -
69 - # work-around gtk-doc out-of-source brokedness
70 - if multilib_is_native_abi; then
71 - ln -s "${S}"/docs/reference/html docs/reference/html || die
72 - fi
73 -}
74 -
75 -multilib_src_install() {
76 - emake DESTDIR="${D}" install
77 - prune_libtool_files
78 -
79 - mv "${ED}"/usr/bin/{,libnotify-}notify-send #379941
80 -}
81 -
82 -pkg_postinst() {
83 - eselect notify-send update ifunset
84 -}
85 -
86 -pkg_postrm() {
87 - eselect notify-send update ifunset
88 -}