Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/gringotts: ChangeLog gringotts-1.2.9.ebuild
Date: Sun, 20 Apr 2008 21:59:00
Message-Id: E1JnhYl-0001Pj-Sb@stork.gentoo.org
1 eva 08/04/20 21:58:55
2
3 Modified: ChangeLog
4 Added: gringotts-1.2.9.ebuild
5 Log:
6 bump to 1.2.9, fix bug #151020.
7 (Portage version: 2.1.5_rc5)
8
9 Revision Changes Path
10 1.27 app-crypt/gringotts/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/gringotts/ChangeLog?rev=1.27&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/gringotts/ChangeLog?rev=1.27&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/gringotts/ChangeLog?r1=1.26&r2=1.27
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-crypt/gringotts/ChangeLog,v
19 retrieving revision 1.26
20 retrieving revision 1.27
21 diff -u -r1.26 -r1.27
22 --- ChangeLog 5 Jan 2007 07:56:49 -0000 1.26
23 +++ ChangeLog 20 Apr 2008 21:58:55 -0000 1.27
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-crypt/gringotts
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/gringotts/ChangeLog,v 1.26 2007/01/05 07:56:49 compnerd Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gringotts/ChangeLog,v 1.27 2008/04/20 21:58:55 eva Exp $
30 +
31 +*gringotts-1.2.9 (20 Apr 2008)
32 +
33 + 20 Apr 2008; Gilles Dartiguelongue <eva@g.o>
34 + +gringotts-1.2.9.ebuild:
35 + bump to 1.2.9, fix bug #151020.
36
37 *gringotts-1.2.8-r2 (05 Jan 2007)
38
39
40
41
42 1.1 app-crypt/gringotts/gringotts-1.2.9.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/gringotts/gringotts-1.2.9.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/gringotts/gringotts-1.2.9.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gringotts-1.2.9.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-crypt/gringotts/gringotts-1.2.9.ebuild,v 1.1 2008/04/20 21:58:55 eva Exp $
52
53 WANT_AUTOCONF="latest"
54 WANT_AUTOMAKE="latest"
55
56 inherit autotools eutils fdo-mime flag-o-matic
57
58 DESCRIPTION="Utility that allows you to jot down sensitive data"
59 HOMEPAGE="http://gringotts.berlios.de/"
60 SRC_URI="mirror://berlios/${PN}/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86"
65 IUSE="suid"
66
67 RDEPEND=">=dev-libs/libgringotts-1.2
68 >=x11-libs/gtk+-2.12
69 dev-libs/popt"
70
71 DEPEND="${RDEPEND}
72 sys-devel/gettext
73 dev-util/pkgconfig"
74
75 src_unpack() {
76 unpack ${A}
77 cd "${S}"
78
79 # Remove deprecation flag, soit compiles with >=GTK+-2.4
80 sed -i -e 's:-DGTK_DISABLE_DEPRECATED::g' src/Makefile.am
81
82 # Patch up to install desktop entry correctly
83 epatch "${FILESDIR}/${PN}-1.2.8-desktop.patch"
84 epatch "${FILESDIR}/${PN}-1.2.8-desktop-entry.patch"
85
86 # Prevent prestripping
87 epatch "${FILESDIR}/${PN}-1.2.8-no-strip.patch"
88
89 eautomake
90 }
91
92 src_compile() {
93 append-ldflags $(bindnow-flags)
94
95 econf || die "configure failed"
96 emake || die "make failed"
97 }
98
99 src_install() {
100 emake -j1 DESTDIR="${D}" install || die
101
102 # The FAQ and README documents shouldn't be gzip'd, as they need to be
103 # available in plain format when they are called from the `Help' menu.
104 #
105 # dodoc FAQ README
106 dodoc AUTHORS BUGS ChangeLog TODO
107 }
108
109 pkg_postinst() {
110 fdo-mime_desktop_database_update
111
112 if use suid; then
113 ewarn "You have installed a suid binary for the \`gringotts' program."
114 ewarn "Be aware that this setup may break with some glibc installations"
115 ewarn "For more information, see bug #69458 in Gentoo's bugzilla at:"
116 ewarn " http://bugs.gentoo.org/"
117 else
118 einfo "Changing permissions for the gringotts binary."
119 chmod u-s "${ROOT}"/usr/bin/gringotts
120 fi
121 }
122
123 pkg_postrm() {
124 fdo-mime_desktop_database_update
125 }
126
127
128
129 --
130 gentoo-commits@l.g.o mailing list