Gentoo Archives: gentoo-commits

From: "Tom Wijsman (tomwij)" <tomwij@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-arch/gtk-splitter: gtk-splitter-2.2.1-r1.ebuild ChangeLog
Date: Wed, 02 Apr 2014 09:50:01
Message-Id: 20140402094955.49B4120061@flycatcher.gentoo.org
1 tomwij 14/04/02 09:49:55
2
3 Modified: ChangeLog
4 Added: gtk-splitter-2.2.1-r1.ebuild
5 Log:
6 [QA] Revision bump to 2.2.1-r1. EAPI 5 and other QA fixes.
7
8 (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
9
10 Revision Changes Path
11 1.17 app-arch/gtk-splitter/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/gtk-splitter/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/gtk-splitter/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/gtk-splitter/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-arch/gtk-splitter/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 3 May 2012 01:58:54 -0000 1.16
24 +++ ChangeLog 2 Apr 2014 09:49:55 -0000 1.17
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-arch/gtk-splitter
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-arch/gtk-splitter/ChangeLog,v 1.16 2012/05/03 01:58:54 jdhore Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-arch/gtk-splitter/ChangeLog,v 1.17 2014/04/02 09:49:55 tomwij Exp $
31 +
32 +*gtk-splitter-2.2.1-r1 (02 Apr 2014)
33 +
34 + 02 Apr 2014; Tom Wijsman <TomWij@g.o>
35 + +files/gtk-splitter-2.2.1-r1-desktop-QA-fixes.patch,
36 + +gtk-splitter-2.2.1-r1.ebuild:
37 + [QA] Revision bump to 2.2.1-r1. EAPI 5 and other QA fixes.
38
39 03 May 2012; Jeff Horelick <jdhore@g.o> gtk-splitter-2.2.1.ebuild:
40 dev-util/pkgconfig -> virtual/pkgconfig
41
42
43
44 1.1 app-arch/gtk-splitter/gtk-splitter-2.2.1-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/gtk-splitter/gtk-splitter-2.2.1-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/gtk-splitter/gtk-splitter-2.2.1-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gtk-splitter-2.2.1-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-arch/gtk-splitter/gtk-splitter-2.2.1-r1.ebuild,v 1.1 2014/04/02 09:49:55 tomwij Exp $
54
55 EAPI="5"
56
57 inherit eutils
58
59 DESCRIPTION="Split files into smaller pieces and combine them back together."
60 HOMEPAGE="http://gtk-splitter.sourceforge.net"
61 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~x86"
66
67 IUSE="crypt"
68
69 RDEPEND="x11-libs/gtk+:2
70 virtual/libintl:0
71 crypt? ( >=app-crypt/mhash-0.8:0 )"
72
73 DEPEND="${RDEPEND}
74 virtual/pkgconfig:*"
75
76 src_prepare() {
77 epatch "${FILESDIR}/"${P}-r1-desktop-QA-fixes.patch
78 }
79
80 src_compile() {
81 default
82
83 if ! use crypt ; then
84 # configure script only autodetects
85 sed -i -e 's:-lmhash::' -e 's:-DHAVE_LIBMHASH=1::' src/Makefile || die
86 fi
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" install
91 }