update to 0.3.0.5.1 [release 0.3.0.5.1-1mamba;Sat Mar 27 2010]
This commit is contained in:
parent
2ec62a24e7
commit
abdc8fe931
@ -1,2 +1,4 @@
|
|||||||
# progsreiserfs
|
# progsreiserfs
|
||||||
|
|
||||||
|
A library for reiserfs low-level file system access.
|
||||||
|
|
||||||
|
11
progsreiserfs-0.3.0.4-underquoted_m4.patch
Normal file
11
progsreiserfs-0.3.0.4-underquoted_m4.patch
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
--- progsreiserfs-0.3.0.4/progsreiserfs.m4.orig 2007-04-23 11:01:04.000000000 +0200
|
||||||
|
+++ progsreiserfs-0.3.0.4/progsreiserfs.m4 2007-04-23 11:01:39.000000000 +0200
|
||||||
|
@@ -10,7 +10,7 @@
|
||||||
|
dnl Adds the required libraries to $REISERFS_LIBS and does an
|
||||||
|
dnl AC_SUBST(REISERFS_LIBS)
|
||||||
|
|
||||||
|
-AC_DEFUN(AC_CHECK_LIBREISERFS,
|
||||||
|
+AC_DEFUN([AC_CHECK_LIBREISERFS],
|
||||||
|
[
|
||||||
|
|
||||||
|
dnl save LIBS
|
114
progsreiserfs.spec
Normal file
114
progsreiserfs.spec
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
%define libver 0.3
|
||||||
|
|
||||||
|
Name: progsreiserfs
|
||||||
|
Version: 0.3.0.5
|
||||||
|
Release: 1mamba
|
||||||
|
Summary: Programs needed for manipulating reiserfs partitions
|
||||||
|
Group: System/Tools
|
||||||
|
Vendor: openmamba
|
||||||
|
Distribution: openmamba
|
||||||
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
|
URL: http://reiserfs.osdn.org.ua/
|
||||||
|
Source: http://progsreiserfs.sourcearchive.com/downloads/%{version}/%{name}_%{version}.orig.tar.gz
|
||||||
|
Patch: %{name}-0.3.0.4-underquoted_m4.patch
|
||||||
|
Patch1: http://progsreiserfs.sourcearchive.com/downloads/%{version}-1/progsreiserfs_%{version}-1.diff.gz
|
||||||
|
License: GPL
|
||||||
|
BuildRequires: bison
|
||||||
|
BuildRequires: gettext-devel
|
||||||
|
Requires: libreiserfs = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
|
|
||||||
|
%description
|
||||||
|
A library for reiserfs low-level file system access.
|
||||||
|
|
||||||
|
%package -n libreiserfs
|
||||||
|
Summary: A library for reiserfs low-level file system access
|
||||||
|
Group: System/Libraries
|
||||||
|
|
||||||
|
%description -n libreiserfs
|
||||||
|
A library for reiserfs low-level file system access.
|
||||||
|
|
||||||
|
%package -n libreiserfs-devel
|
||||||
|
Summary: A library for reiserfs low-level file system access
|
||||||
|
Group: System/Libraries
|
||||||
|
Requires: libreiserfs = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
|
||||||
|
%description -n libreiserfs-devel
|
||||||
|
A library for reiserfs low-level file system access.
|
||||||
|
This is the development package.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
%patch -p1
|
||||||
|
%patch1 -p1
|
||||||
|
|
||||||
|
%build
|
||||||
|
%configure \
|
||||||
|
--enable-shared \
|
||||||
|
--disable-static \
|
||||||
|
--with-pic \
|
||||||
|
%if "%{_build}" != "%{_host}"
|
||||||
|
ac_cv_func_malloc_0_nonnull=yes
|
||||||
|
%endif
|
||||||
|
|
||||||
|
#%if "%{_host}" != "%{_build}"
|
||||||
|
#sed -i "s|sys_lib_search_path_spec=.*|sys_lib_search_path_spec=\"%{_prefix}/%{_host}/lib\"|" libtool
|
||||||
|
#%endif
|
||||||
|
%make
|
||||||
|
|
||||||
|
%install
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
%makeinstall
|
||||||
|
|
||||||
|
%post -n libreiserfs -p /sbin/ldconfig
|
||||||
|
%postun -n libreiserfs -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%clean
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_sbindir}/cpfs.reiserfs
|
||||||
|
#%{_sbindir}/fsck.reiserfs
|
||||||
|
%{_sbindir}/mkfs.reiserfs
|
||||||
|
%{_sbindir}/resizefs.reiserfs
|
||||||
|
%{_sbindir}/tunefs.reiserfs
|
||||||
|
%{_mandir}/man8/cpfs.reiserfs.*
|
||||||
|
%{_mandir}/man8/mkfs.reiserfs.*
|
||||||
|
%{_mandir}/man8/reiserfs.*
|
||||||
|
%{_mandir}/man8/resizefs.reiserfs.*
|
||||||
|
%{_mandir}/man8/tunefs.reiserfs.*
|
||||||
|
|
||||||
|
%files -n libreiserfs
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_libdir}/libdal-%{libver}.so.*
|
||||||
|
%{_libdir}/libreiserfs-%{libver}.so.*
|
||||||
|
|
||||||
|
%files -n libreiserfs-devel
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_includedir}/dal/
|
||||||
|
%{_includedir}/reiserfs/
|
||||||
|
%{_libdir}/libdal.la
|
||||||
|
%{_libdir}/libdal.so
|
||||||
|
%{_libdir}/libreiserfs.la
|
||||||
|
%{_libdir}/libreiserfs.so
|
||||||
|
%{_datadir}/aclocal/progsreiserfs.m4
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Sat Mar 27 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 0.3.0.5.1-1mamba
|
||||||
|
- update to 0.3.0.5.1
|
||||||
|
|
||||||
|
* Mon Apr 23 2007 Davide Madrisan <davide.madrisan@gmail.com> 0.3.0.4-4mamba
|
||||||
|
- fix "underquoted definition of AC_CHECK_LIBREISERFS" in progsreiserfs.m4
|
||||||
|
- do not build static library
|
||||||
|
- own %{_includedir}/dal and %{_includedir}/reiserfs directories
|
||||||
|
|
||||||
|
* Fri Mar 10 2006 Silvan Calarco <silvan.calarco@mambasoft.it> 0.3.0.4-3qilnx
|
||||||
|
- move .so files to main package or parted won't recognize reiserfs
|
||||||
|
|
||||||
|
* Wed Nov 23 2005 Stefano Cotta Ramusino <stefano.cotta@qilinux.it> 0.3.0.4-2qilnx
|
||||||
|
- specfile fixed
|
||||||
|
|
||||||
|
* Tue Mar 30 2004 Silvan Calarco <silvan.calarco@mambasoft.it> 0.3.0.4-1qilnx
|
||||||
|
- first build
|
||||||
|
http://progsreiserfs.sourcearchive.com/downloads/0.3.0.5-1/progsreiserfs_0.3.0.5-1.diff.gz
|
39574
progsreiserfs_0.3.0.5-1.diff
Normal file
39574
progsreiserfs_0.3.0.5-1.diff
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user