update to 332.25 [release 332.25-1mamba;Sun Jun 26 2016]
This commit is contained in:
parent
d9b1fb737f
commit
9ccfb32818
@ -8,15 +8,3 @@ diff -Nru diskdev_cmds-332.14.orig/Makefile.lnx diskdev_cmds-332.14/Makefile.lnx
|
|||||||
SUBDIRS := newfs_hfs.tproj fsck_hfs.tproj
|
SUBDIRS := newfs_hfs.tproj fsck_hfs.tproj
|
||||||
|
|
||||||
all clean:
|
all clean:
|
||||||
diff -Nru diskdev_cmds-332.14.orig/newfs_hfs.tproj/Makefile.lnx diskdev_cmds-332.14/newfs_hfs.tproj/Makefile.lnx
|
|
||||||
--- diskdev_cmds-332.14.orig/newfs_hfs.tproj/Makefile.lnx 2012-02-25 21:05:44.336332916 +0100
|
|
||||||
+++ diskdev_cmds-332.14/newfs_hfs.tproj/Makefile.lnx 2012-02-25 21:07:03.048447076 +0100
|
|
||||||
@@ -4,7 +4,7 @@
|
|
||||||
all: newfs_hfs
|
|
||||||
|
|
||||||
newfs_hfs: $(OFILES)
|
|
||||||
- ${CC} ${CFLAGS} -o newfs_hfs ${OFILES} -lssl
|
|
||||||
+ ${CC} ${CFLAGS} -o newfs_hfs ${OFILES} -lssl -lcrypto
|
|
||||||
|
|
||||||
clean:
|
|
||||||
$(RM) newfs_hfs $(OFILES)
|
|
||||||
|
12
hfstools-332.14-fix_link_with_openssl.patch
Normal file
12
hfstools-332.14-fix_link_with_openssl.patch
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
diff -Nru diskdev_cmds-332.14.orig/newfs_hfs.tproj/Makefile.lnx diskdev_cmds-332.14/newfs_hfs.tproj/Makefile.lnx
|
||||||
|
--- diskdev_cmds-332.14.orig/newfs_hfs.tproj/Makefile.lnx 2012-02-25 21:05:44.336332916 +0100
|
||||||
|
+++ diskdev_cmds-332.14/newfs_hfs.tproj/Makefile.lnx 2012-02-25 21:07:03.048447076 +0100
|
||||||
|
@@ -4,7 +4,7 @@
|
||||||
|
all: newfs_hfs
|
||||||
|
|
||||||
|
newfs_hfs: $(OFILES)
|
||||||
|
- ${CC} ${CFLAGS} -o newfs_hfs ${OFILES} -lssl
|
||||||
|
+ ${CC} ${CFLAGS} -o newfs_hfs ${OFILES} -lssl -lcrypto
|
||||||
|
|
||||||
|
clean:
|
||||||
|
$(RM) newfs_hfs $(OFILES)
|
@ -1,6 +1,6 @@
|
|||||||
Name: hfstools
|
Name: hfstools
|
||||||
Version: 332.14
|
Version: 332.25
|
||||||
Release: 5mamba
|
Release: 1mamba
|
||||||
Summary: Tools to initialize and repair HFS and HFS+ filesystems
|
Summary: Tools to initialize and repair HFS and HFS+ filesystems
|
||||||
Group: System/Tools
|
Group: System/Tools
|
||||||
Vendor: openmamba
|
Vendor: openmamba
|
||||||
@ -8,12 +8,15 @@ Distribution: openmamba
|
|||||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
URL: http://opensource.apple.com
|
URL: http://opensource.apple.com
|
||||||
Source: http://opensource.apple.com/tarballs/diskdev_cmds/diskdev_cmds-%{version}.tar.gz
|
Source: http://opensource.apple.com/tarballs/diskdev_cmds/diskdev_cmds-%{version}.tar.gz
|
||||||
|
Source1: http://ftp.de.debian.org/debian/pool/main/h/hfsprogs/hfsprogs_%{version}-11.debian.tar.gz
|
||||||
Patch0: http://www.ecl.udel.edu/%7Emcgee/diskdev_cmds/diskdev_cmds-332.14.patch.bz2
|
Patch0: http://www.ecl.udel.edu/%7Emcgee/diskdev_cmds/diskdev_cmds-332.14.patch.bz2
|
||||||
Patch1: %{name}-332.14-fsck_checkfs.patch
|
Patch1: %{name}-332.14-fsck_checkfs.patch
|
||||||
Patch2: %{name}-332.14-fix_link_with_gold.patch
|
Patch2: %{name}-332.14-fix_link_with_gold.patch
|
||||||
|
Patch3: hfstools-332.14-fix_link_with_openssl.patch
|
||||||
License: BSD
|
License: BSD
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
BuildRequires: glibc-devel
|
BuildRequires: glibc-devel
|
||||||
|
BuildRequires: libbsd-devel
|
||||||
BuildRequires: libopenssl-devel
|
BuildRequires: libopenssl-devel
|
||||||
## AUTOBUILDREQ-END
|
## AUTOBUILDREQ-END
|
||||||
BuildRequires: libopenssl-devel >= 0.9.7h
|
BuildRequires: libopenssl-devel >= 0.9.7h
|
||||||
@ -23,10 +26,8 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|||||||
Tools to initialize and repair HFS and HFS+ filesystems.
|
Tools to initialize and repair HFS and HFS+ filesystems.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n diskdev_cmds-%{version}
|
%setup -q -n diskdev_cmds-%{version} -a1
|
||||||
%patch0 -p1
|
cat debian/patches/*.patch|patch -p1
|
||||||
%patch1 -p1
|
|
||||||
%patch2 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%make -f Makefile.lnx
|
%make -f Makefile.lnx
|
||||||
@ -53,6 +54,9 @@ ln -s fsck.hfsplus %{buildroot}/sbin/fsck.hfs
|
|||||||
%{_mandir}/man8/fsck.hfsplus.8.gz
|
%{_mandir}/man8/fsck.hfsplus.8.gz
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Jun 26 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 332.25-1mamba
|
||||||
|
- update to 332.25
|
||||||
|
|
||||||
* Sat Feb 25 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 332.14-5mamba
|
* Sat Feb 25 2012 Silvan Calarco <silvan.calarco@mambasoft.it> 332.14-5mamba
|
||||||
- added a patch to fix build using binutils gold linker
|
- added a patch to fix build using binutils gold linker
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user