Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/girara: girara-0.2.4.ebuild ChangeLog
Date: Mon, 01 Jun 2015 12:56:26
Message-Id: 20150601125619.8723FA1B@oystercatcher.gentoo.org
1 xmw 15/06/01 12:56:19
2
3 Modified: ChangeLog
4 Added: girara-0.2.4.ebuild
5 Log:
6 Version bump (thanks Jan-Willem Liebezeit, bug 549874).
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
9
10 Revision Changes Path
11 1.38 dev-libs/girara/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/girara/ChangeLog?rev=1.38&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/girara/ChangeLog?rev=1.38&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/girara/ChangeLog?r1=1.37&r2=1.38
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/girara/ChangeLog,v
20 retrieving revision 1.37
21 retrieving revision 1.38
22 diff -u -r1.37 -r1.38
23 --- ChangeLog 24 Oct 2014 17:54:42 -0000 1.37
24 +++ ChangeLog 1 Jun 2015 12:56:19 -0000 1.38
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/girara
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/girara/ChangeLog,v 1.37 2014/10/24 17:54:42 ssuominen Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/girara/ChangeLog,v 1.38 2015/06/01 12:56:19 xmw Exp $
31 +
32 +*girara-0.2.4 (01 Jun 2015)
33 +
34 + 01 Jun 2015; Michael Weber <xmw@g.o> +girara-0.2.4.ebuild:
35 + Version bump (thanks Jan-Willem Liebezeit, bug 549874).
36
37 *girara-0.2.3 (24 Oct 2014)
38
39
40
41
42 1.1 dev-libs/girara/girara-0.2.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/girara/girara-0.2.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/girara/girara-0.2.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: girara-0.2.4.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/girara/girara-0.2.4.ebuild,v 1.1 2015/06/01 12:56:19 xmw Exp $
52
53 EAPI=5
54
55 inherit multilib toolchain-funcs
56 [[ ${PV} == 9999* ]] && inherit git-2
57
58 DESCRIPTION="A library that implements a user interface that focuses on simplicity and minimalism"
59 HOMEPAGE="http://pwmt.org/projects/girara/"
60 if ! [[ ${PV} == 9999* ]]; then
61 SRC_URI="http://pwmt.org/projects/${PN}/download/${P}.tar.gz"
62 fi
63 EGIT_REPO_URI="git://git.pwmt.org/${PN}.git"
64 EGIT_BRANCH="develop"
65
66 LICENSE="ZLIB"
67 SLOT="3"
68 if ! [[ ${PV} == 9999* ]]; then
69 KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
70 else
71 KEYWORDS=""
72 fi
73 IUSE="libnotify static-libs"
74
75 RDEPEND=">=dev-libs/glib-2.28
76 >=x11-libs/gtk+-3.2:3
77 dev-libs/json-c
78 !<${CATEGORY}/${PN}-0.1.6
79 libnotify? ( >=x11-libs/libnotify-0.7 )"
80 DEPEND="${RDEPEND}
81 sys-devel/gettext
82 virtual/pkgconfig"
83
84 pkg_setup() {
85 mygiraraconf=(
86 WITH_LIBNOTIFY=$(usex libnotify 1 0)
87 PREFIX="${EPREFIX}"/usr
88 LIBDIR='${PREFIX}'/$(get_libdir)
89 CC="$(tc-getCC)"
90 SFLAGS=''
91 VERBOSE=1
92 DESTDIR="${D}"
93 )
94 }
95
96 src_prepare() {
97 # Remove 'static' and 'install-static' targets
98 if ! use static-libs; then
99 sed -i \
100 -e '/^${PROJECT}:/s:static::' \
101 -e '/^install:/s:install-static::' \
102 Makefile || die
103 fi
104 }
105
106 src_compile() {
107 emake "${mygiraraconf[@]}"
108 }
109
110 src_install() {
111 emake "${mygiraraconf[@]}" install
112 dodoc AUTHORS
113 }