rpms/gparted/FC-5 gparted-parted-check.patch, NONE, 1.1 gparted.spec, 1.12, 1.13

Deji Akingunola (deji) fedora-extras-commits at redhat.com
Thu Nov 30 13:49:47 UTC 2006


Author: deji

Update of /cvs/extras/rpms/gparted/FC-5
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv15767

Modified Files:
	gparted.spec 
Added Files:
	gparted-parted-check.patch 
Log Message:
* Mon Nov 21 2006 Deji Akingunola <dakingun at gmail.com> - 0.3.1-2
- Rebuild for new parted


gparted-parted-check.patch:

--- NEW FILE gparted-parted-check.patch ---
--- configure.in	2006/09/11 09:46:42	1.62
+++ configure.in	2006/09/14 20:34:49	1.63
@@ -33,7 +33,8 @@
 AC_CHECK_LIB(dl, dlopen,          [], AC_MSG_ERROR([*** dl library (libdl) not found]))
 
 dnl libparted
-AC_MSG_CHECKING(for libparted >= 1.7.1)
+LIBPARTED_VERSION=1.7.1
+AC_MSG_CHECKING(for libparted >= $LIBPARTED_VERSION)
 LDFLAGS=-lparted
 AC_TRY_RUN(
 #include <stdio.h>
@@ -41,16 +42,28 @@
 
 int main ()
 {
+	int min_major ;
+	int min_minor ;
+	int min_micro ;
 	int major ;
 	int minor ;
 	int micro ;
 
-	if ( sscanf( ped_get_version(), "%d.%d.%d", &major, &minor, &micro ) == 3 )
-		printf( "Found libparted %s\t", ped_get_version() ) ;
+	if ( sscanf( "$LIBPARTED_VERSION", "%d.%d.%d", &min_major, &min_minor, &min_micro ) == 3 )
+	{
+		if ( sscanf( ped_get_version(), "%d.%d.%d", &major, &minor, &micro ) == 3 )
+		{
+			printf( "Found libparted %s\t", ped_get_version() ) ;
+
+			return ! ((major > min_major) ||
+           			 ((major == min_major) && (minor > min_minor)) ||
+           			 ((major == min_major) && (minor == min_minor) && (micro >= min_micro))) ;
+		}
+	}
 
-        return ! ( major == 1 && minor == 7 && micro >= 1 ) ;
+	return 1 ;
 }
-,AC_MSG_RESULT(OK),AC_MSG_ERROR(*** Requires libparted >= 1.7.1) )
+,AC_MSG_RESULT(OK),AC_MSG_ERROR(*** Requires libparted >= $LIBPARTED_VERSION) )
 
 
 dnl GTKMM


Index: gparted.spec
===================================================================
RCS file: /cvs/extras/rpms/gparted/FC-5/gparted.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- gparted.spec	13 Sep 2006 22:36:51 -0000	1.12
+++ gparted.spec	30 Nov 2006 13:49:17 -0000	1.13
@@ -1,15 +1,18 @@
 Summary: Gnome Partition Editor
 Name:    gparted
 Version: 0.3.1
-Release: 1%{?dist}
+Release: 2%{?dist}
 Group:   Applications/System
 License: GPL
 URL:     http://gparted.sourceforge.net
 Source0: http://dl.sf.net/sourceforge/%{name}/%{name}-%{version}.tar.bz2
+Patch0: gparted-parted-check.patch
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires: gtkmm24-devel parted-devel 
-BuildRequires: e2fsprogs-devel gettext
+BuildRequires: e2fsprogs-devel gettext perl(XML::Parser)
 BuildRequires: desktop-file-utils
+#Temporarily
+BuildRequires: automake autoconf libtool intltool
 
 %description
 GParted stands for Gnome Partition Editor and is a graphical frontend to
@@ -20,8 +23,12 @@
 
 %prep
 %setup -q
+%patch0 -p0 -b .parted
 
 %build
+aclocal
+automake
+autoconf
 %configure
 make %{?_smp_mflags} 
 
@@ -77,6 +84,9 @@
 %config(noreplace) %{_sysconfdir}/security/console.apps/gparted
 
 %changelog
+* Mon Nov 21 2006 Deji Akingunola <dakingun at gmail.com> - 0.3.1-2
+- Rebuild for new parted
+
 * Wed Sep 13 2006 Deji Akingunola <dakingun at gmail.com> - 0.3.1-1
 - New version 0.3.1
 




More information about the scm-commits mailing list