diff options
author | Jeroen Roovers <jer@gentoo.org> | 2007-11-29 19:00:31 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2007-11-29 19:00:31 +0000 |
commit | e813b3545469f6f5a53bb9b97fc149ffc451eb0f (patch) | |
tree | b8f58834946712ad1d9238adfd6ff03b5bd55a0f /app-editors/gedit | |
parent | fix order of variables/inherit (diff) | |
download | gentoo-2-e813b3545469f6f5a53bb9b97fc149ffc451eb0f.tar.gz gentoo-2-e813b3545469f6f5a53bb9b97fc149ffc451eb0f.tar.bz2 gentoo-2-e813b3545469f6f5a53bb9b97fc149ffc451eb0f.zip |
Apply a new libattr patch to 2.20.3 (bug #191989).
(Portage version: 2.1.4_rc4)
Diffstat (limited to 'app-editors/gedit')
-rw-r--r-- | app-editors/gedit/ChangeLog | 6 | ||||
-rw-r--r-- | app-editors/gedit/files/gedit-2.20.3-libattr.patch | 11 | ||||
-rw-r--r-- | app-editors/gedit/gedit-2.20.3.ebuild | 5 |
3 files changed, 20 insertions, 2 deletions
diff --git a/app-editors/gedit/ChangeLog b/app-editors/gedit/ChangeLog index e6ee17c2847d..d016d0c31555 100644 --- a/app-editors/gedit/ChangeLog +++ b/app-editors/gedit/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-editors/gedit # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit/ChangeLog,v 1.220 2007/11/29 18:37:04 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit/ChangeLog,v 1.221 2007/11/29 19:00:30 jer Exp $ + + 29 Nov 2007; Jeroen Roovers <jer@gentoo.org> + +files/gedit-2.20.3-libattr.patch, gedit-2.20.3.ebuild: + Apply a new libattr patch to 2.20.3 (bug #191989). 29 Nov 2007; Jeroen Roovers <jer@gentoo.org> gedit-2.20.3.ebuild: Reverting applying the libattr patch (which does not work as intended for diff --git a/app-editors/gedit/files/gedit-2.20.3-libattr.patch b/app-editors/gedit/files/gedit-2.20.3-libattr.patch new file mode 100644 index 000000000000..3237bb614770 --- /dev/null +++ b/app-editors/gedit/files/gedit-2.20.3-libattr.patch @@ -0,0 +1,11 @@ +--- configure.ac. 2007-10-18 11:12:44.000000000 +0200 ++++ configure.ac 2007-11-29 19:41:10.000000000 +0100 +@@ -139,8 +139,6 @@ + dnl libattr checks + dnl ================================================================ + +-AC_CHECK_LIB(attr, attr_copy_fd) +- + AC_MSG_CHECKING([whether libattr support is requested]) + AC_ARG_ENABLE([attr], + AS_HELP_STRING([--enable-attr],[Enable libattr support]), diff --git a/app-editors/gedit/gedit-2.20.3.ebuild b/app-editors/gedit/gedit-2.20.3.ebuild index dc8516983447..8ec89307a244 100644 --- a/app-editors/gedit/gedit-2.20.3.ebuild +++ b/app-editors/gedit/gedit-2.20.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit/gedit-2.20.3.ebuild,v 1.8 2007/11/29 18:37:04 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit/gedit-2.20.3.ebuild,v 1.9 2007/11/29 19:00:30 jer Exp $ inherit gnome2 eutils autotools @@ -61,5 +61,8 @@ src_unpack() { # chown on fbsd doesn't have --reference. Bug #183691 epatch "${FILESDIR}"/${PN}-2.18.1-fbsd.patch + # Make libattr optional; bug #191989 + epatch "${FILESDIR}"/${P}-libattr.patch + AT_M4DIR="./m4" eautoreconf } |