diff options
author | 2009-10-24 18:35:00 +0000 | |
---|---|---|
committer | 2009-10-24 18:35:00 +0000 | |
commit | b29af143a20049d737084d424165aa1fee1fd6bc (patch) | |
tree | e45206e9dbfa7c4e5eddaa9c2b6336c35a9d4e7f /app-cdr | |
parent | Stable on alpha, bug #289858 (diff) | |
download | gentoo-2-b29af143a20049d737084d424165aa1fee1fd6bc.tar.gz gentoo-2-b29af143a20049d737084d424165aa1fee1fd6bc.tar.bz2 gentoo-2-b29af143a20049d737084d424165aa1fee1fd6bc.zip |
Fix configure.in to detect >=exo-0.5.
(Portage version: 2.2_rc46/cvs/Linux x86_64)
Diffstat (limited to 'app-cdr')
-rw-r--r-- | app-cdr/xfburn/ChangeLog | 6 | ||||
-rw-r--r-- | app-cdr/xfburn/files/xfburn-0.4.2-exo.patch | 13 | ||||
-rw-r--r-- | app-cdr/xfburn/xfburn-0.4.2.ebuild | 4 |
3 files changed, 21 insertions, 2 deletions
diff --git a/app-cdr/xfburn/ChangeLog b/app-cdr/xfburn/ChangeLog index e0da3e9c338c..2fa6bdad1bca 100644 --- a/app-cdr/xfburn/ChangeLog +++ b/app-cdr/xfburn/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-cdr/xfburn # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/xfburn/ChangeLog,v 1.20 2009/09/27 11:20:31 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-cdr/xfburn/ChangeLog,v 1.21 2009/10/24 18:35:00 ssuominen Exp $ + + 24 Oct 2009; Samuli Suominen <ssuominen@gentoo.org> xfburn-0.4.2.ebuild, + +files/xfburn-0.4.2-exo.patch: + Fix configure.in to detect >=exo-0.5. 27 Sep 2009; Markus Meier <maekke@gentoo.org> xfburn-0.4.2.ebuild: amd64/x86 stable, bug #286069 diff --git a/app-cdr/xfburn/files/xfburn-0.4.2-exo.patch b/app-cdr/xfburn/files/xfburn-0.4.2-exo.patch new file mode 100644 index 000000000000..16710444590e --- /dev/null +++ b/app-cdr/xfburn/files/xfburn-0.4.2-exo.patch @@ -0,0 +1,13 @@ +diff -ur xfburn-0.4.2.orig/configure.in xfburn-0.4.2/configure.in +--- xfburn-0.4.2.orig/configure.in 2009-07-24 08:40:05.000000000 +0300 ++++ xfburn-0.4.2/configure.in 2009-10-24 21:33:09.000000000 +0300 +@@ -34,7 +34,8 @@ + XDT_CHECK_PACKAGE([GTHREAD], [gthread-2.0], [2.6.0]) + XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.10.0]) + XDT_CHECK_PACKAGE([LIBXFCEGUI4], [libxfcegui4-1.0], [4.4.0]) +-XDT_CHECK_PACKAGE([EXO], [exo-0.3], [0.3.0]) ++XDT_CHECK_PACKAGE([EXO], [exo-0.3], [0.3.0], [], ++ [XDT_CHECK_PACKAGE([EXO], [exo-1], [0.5.0])]) + XDT_CHECK_OPTIONAL_PACKAGE([THUNAR_VFS], [thunar-vfs-1], [0.3.0], [thunar-vfs], + AC_HELP_STRING([--disable-thunar-vfs], + [Disable the use of Thunar's VFS layer to show mime type and icons in file browser])) diff --git a/app-cdr/xfburn/xfburn-0.4.2.ebuild b/app-cdr/xfburn/xfburn-0.4.2.ebuild index 36db18c533d2..125ed8e88877 100644 --- a/app-cdr/xfburn/xfburn-0.4.2.ebuild +++ b/app-cdr/xfburn/xfburn-0.4.2.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/xfburn/xfburn-0.4.2.ebuild,v 1.5 2009/09/27 11:20:31 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-cdr/xfburn/xfburn-0.4.2.ebuild,v 1.6 2009/10/24 18:35:00 ssuominen Exp $ EAPI=2 +EAUTORECONF=yes inherit xfconf DESCRIPTION="GTK+ based CD and DVD burning application" @@ -37,4 +38,5 @@ pkg_setup() { $(use_enable hal) $(use_enable thunar thunar-vfs)" DOCS="AUTHORS ChangeLog NEWS README TODO" + PATCHES=( "${FILESDIR}/${P}-exo.patch" ) } |