Gentoo Archives: gentoo-commits

From: "Daniel Gryniewicz (dang)" <dang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/gedit/files: gedit-2.18.2-libattr.patch digest-gedit-2.18.2-r1
Date: Thu, 13 Sep 2007 16:16:57
Message-Id: E1IVrFn-0003DB-1Z@stork.gentoo.org
1 dang 07/09/13 16:09:19
2
3 Added: gedit-2.18.2-libattr.patch digest-gedit-2.18.2-r1
4 Log:
5 Make libattr optional; bug #191989
6 (Portage version: 2.1.3.9)
7
8 Revision Changes Path
9 1.1 app-editors/gedit/files/gedit-2.18.2-libattr.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/gedit/files/gedit-2.18.2-libattr.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/gedit/files/gedit-2.18.2-libattr.patch?rev=1.1&content-type=text/plain
13
14 Index: gedit-2.18.2-libattr.patch
15 ===================================================================
16 Author: Doug Goldstein <cardoe@g.o>
17 Date: Thr Sep 13 10:08:24 2007 +0400
18 remove shadow depend on libattr and make it user config'd
19
20 removes the shadow depend on libattr and makes it user configurable.
21 leaves the default to yes as is currently in gedit, however it fails
22 if libattr is not found so that it's not a shadow depend.
23
24 --- gedit-2.18.2/configure.ac.old 2007-06-24 12:06:30.000000000 -0400
25 +++ gedit-2.18.2/configure.ac 2007-09-13 10:21:12.000000000 -0400
26 @@ -138,8 +138,15 @@
27 dnl ================================================================
28 dnl libattr checks
29 dnl ================================================================
30 -
31 -AC_CHECK_LIB(attr, attr_copy_fd)
32 +AC_ARG_WITH([attr],
33 + AS_HELP_STRING([--without-attr],[Don't use libattr support]),
34 + [],
35 + [with_attr=yes])
36 +
37 +if test "x$with_attr" = "xyes"; then
38 + AC_CHECK_LIB([attr], [attr_copy_fd], [],
39 + AC_MSG_ERROR([*** attr library (libattr) not found]))
40 +fi
41
42 dnl ================================================================
43 dnl Start of pkg-config checks
44
45
46
47 1.1 app-editors/gedit/files/digest-gedit-2.18.2-r1
48
49 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/gedit/files/digest-gedit-2.18.2-r1?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/gedit/files/digest-gedit-2.18.2-r1?rev=1.1&content-type=text/plain
51
52 Index: digest-gedit-2.18.2-r1
53 ===================================================================
54 MD5 7e8bf29bd6bf0d17ceaf42d9bd5d94e6 gedit-2.18.2.tar.bz2 3454560
55 RMD160 d9845a95ace6dfaf1afb7a3f3e515c48baaf0743 gedit-2.18.2.tar.bz2 3454560
56 SHA256 12e4c2e15c1449e92f9f6c7966f4e1829290d5af35b9ec0b9274d8f167a89f44 gedit-2.18.2.tar.bz2 3454560
57
58
59
60 --
61 gentoo-commits@g.o mailing list