commit
ebfbdea08d
@ -0,0 +1,5 @@
|
|||||||
|
SOURCES/gccmakedep-1.0.3.tar.bz2
|
||||||
|
SOURCES/imake-1.0.7.tar.bz2
|
||||||
|
SOURCES/lndir-1.0.3.tar.bz2
|
||||||
|
SOURCES/makedepend-1.0.4.tar.bz2
|
||||||
|
SOURCES/xorg-cf-files-1.0.6.tar.bz2
|
@ -0,0 +1,5 @@
|
|||||||
|
03018e2fb9d7df4fec1623cedb1c090bc224f971 SOURCES/gccmakedep-1.0.3.tar.bz2
|
||||||
|
52e236776133f217d438622034b8603d201a6ec5 SOURCES/imake-1.0.7.tar.bz2
|
||||||
|
fc71a6ff2cc0a1065cfb608796ffd6b4f0ce76fe SOURCES/lndir-1.0.3.tar.bz2
|
||||||
|
1f0f8aea1526c6c022f2cf16f7a6c67118c68336 SOURCES/makedepend-1.0.4.tar.bz2
|
||||||
|
9b6ed71c74a83181a47eb180787e9ab9a5efdfa2 SOURCES/xorg-cf-files-1.0.6.tar.bz2
|
@ -0,0 +1,18 @@
|
|||||||
|
diff -up imake-1.0.2/imake.c.jx imake-1.0.2/imake.c
|
||||||
|
--- imake-1.0.2/imake.c.jx 2006-05-15 16:28:14.000000000 -0400
|
||||||
|
+++ imake-1.0.2/imake.c 2010-10-25 17:14:37.000000000 -0400
|
||||||
|
@@ -1030,8 +1030,12 @@ get_libc_version(FILE *inFile)
|
||||||
|
|
||||||
|
len = pclose (fp);
|
||||||
|
remove (aout);
|
||||||
|
- if (len)
|
||||||
|
- abort ();
|
||||||
|
+ if (len) {
|
||||||
|
+ /* handwave furiously */
|
||||||
|
+ printf("#define DefaultLinuxCLibMajorVersion 6\n");
|
||||||
|
+ printf("#define DefaultLinuxCLibMinorVersion 12\n");
|
||||||
|
+ printf("#define DefaultLinuxCLibTeenyVersion 0\n");
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
@ -0,0 +1,17 @@
|
|||||||
|
--- xorg-cf-files-1.0.6/linux.cf.redhat 2005-10-21 21:10:27.000000000 +0200
|
||||||
|
+++ xorg-cf-files-1.0.6/linux.cf 2005-12-21 11:27:16.000000000 +0100
|
||||||
|
@@ -190,7 +190,13 @@
|
||||||
|
#endif /* LinuxDebian */
|
||||||
|
|
||||||
|
#if LinuxDistribution == LinuxRedHat
|
||||||
|
-#define FSUseSyslog YES
|
||||||
|
+# define FSUseSyslog YES
|
||||||
|
+# define BuildRman NO
|
||||||
|
+# define BuildHtmlManPages NO
|
||||||
|
+# define ProjectRoot /usr
|
||||||
|
+# define ManPath /usr/share/man
|
||||||
|
+# define XAppLoadDir /usr/share/X11/app-defaults
|
||||||
|
+# define ConfigDir /usr/share/X11/config
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef HasDevRandom
|
@ -0,0 +1,164 @@
|
|||||||
|
Summary: imake source code configuration and build system
|
||||||
|
Name: imake
|
||||||
|
Version: 1.0.7
|
||||||
|
Release: 11%{?dist}
|
||||||
|
License: MIT
|
||||||
|
Group: User Interface/X
|
||||||
|
URL: http://www.x.org
|
||||||
|
|
||||||
|
Source0: https://www.x.org/pub/individual/util/imake-1.0.7.tar.bz2
|
||||||
|
Source1: https://www.x.org/pub/individual/util/makedepend-1.0.4.tar.bz2
|
||||||
|
Source2: https://www.x.org/pub/individual/util/gccmakedep-1.0.3.tar.bz2
|
||||||
|
Source3: https://www.x.org/pub/individual/util/xorg-cf-files-1.0.6.tar.bz2
|
||||||
|
Source4: https://www.x.org/pub/individual/util/lndir-1.0.3.tar.bz2
|
||||||
|
# this has been merged post 1.0.6
|
||||||
|
Patch2: xorg-cf-files-1.0.2-redhat.patch
|
||||||
|
Patch11: imake-1.0.2-abort.patch
|
||||||
|
|
||||||
|
BuildRequires: pkgconfig
|
||||||
|
BuildRequires: xorg-x11-util-macros
|
||||||
|
BuildRequires: xorg-x11-proto-devel
|
||||||
|
|
||||||
|
Provides: ccmakedep cleanlinks gccmakedep lndir makedepend makeg
|
||||||
|
Provides: mergelib mkdirhier mkhtmlindex revpath xmkmf
|
||||||
|
|
||||||
|
%description
|
||||||
|
Imake is a deprecated source code configuration and build system which
|
||||||
|
has traditionally been supplied by and used to build the X Window System
|
||||||
|
in X11R6 and previous releases. As of the X Window System X11R7 release,
|
||||||
|
the X Window system has switched to using GNU autotools as the primary
|
||||||
|
build system, and the Imake system is now deprecated, and should not be
|
||||||
|
used by new software projects. Software developers are encouraged to
|
||||||
|
migrate software to the GNU autotools system.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -c %{name}-%{version} -a1 -a2 -a3 -a4
|
||||||
|
%patch2 -p0 -b .redhat
|
||||||
|
|
||||||
|
# imake patches
|
||||||
|
pushd %{name}-%{version}
|
||||||
|
%patch11 -p1 -b .abort
|
||||||
|
popd
|
||||||
|
|
||||||
|
%build
|
||||||
|
# Build everything
|
||||||
|
{
|
||||||
|
for pkg in imake makedepend gccmakedep lndir xorg-cf-files ; do
|
||||||
|
pushd $pkg-*
|
||||||
|
case $pkg in
|
||||||
|
imake|xorg-cf-files)
|
||||||
|
%configure --with-config-dir=%{_datadir}/X11/config
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
%configure
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
make
|
||||||
|
popd
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
%install
|
||||||
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
# Install everything
|
||||||
|
{
|
||||||
|
for pkg in imake makedepend gccmakedep lndir xorg-cf-files ; do
|
||||||
|
pushd $pkg-*
|
||||||
|
make install DESTDIR=$RPM_BUILD_ROOT
|
||||||
|
popd
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
%files
|
||||||
|
%doc
|
||||||
|
%{_bindir}/ccmakedep
|
||||||
|
%{_bindir}/cleanlinks
|
||||||
|
%{_bindir}/gccmakedep
|
||||||
|
%{_bindir}/imake
|
||||||
|
%{_bindir}/lndir
|
||||||
|
%{_bindir}/makedepend
|
||||||
|
%{_bindir}/makeg
|
||||||
|
%{_bindir}/mergelib
|
||||||
|
%{_bindir}/mkdirhier
|
||||||
|
%{_bindir}/mkhtmlindex
|
||||||
|
%{_bindir}/revpath
|
||||||
|
%{_bindir}/xmkmf
|
||||||
|
%dir %{_datadir}/X11/config
|
||||||
|
%{_datadir}/X11/config/*.cf
|
||||||
|
%{_datadir}/X11/config/*.def
|
||||||
|
%{_datadir}/X11/config/*.rules
|
||||||
|
%{_datadir}/X11/config/*.tmpl
|
||||||
|
#%%dir %%{_mandir}/man1x
|
||||||
|
%{_mandir}/man1/ccmakedep.1*
|
||||||
|
%{_mandir}/man1/cleanlinks.1*
|
||||||
|
%{_mandir}/man1/gccmakedep.1*
|
||||||
|
%{_mandir}/man1/imake.1*
|
||||||
|
%{_mandir}/man1/lndir.1*
|
||||||
|
%{_mandir}/man1/makedepend.1*
|
||||||
|
%{_mandir}/man1/makeg.1*
|
||||||
|
%{_mandir}/man1/mergelib.1*
|
||||||
|
%{_mandir}/man1/mkdirhier.1*
|
||||||
|
%{_mandir}/man1/mkhtmlindex.1*
|
||||||
|
%{_mandir}/man1/revpath.1*
|
||||||
|
%{_mandir}/man1/xmkmf.1*
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Thu Jul 05 2018 Adam Jackson <ajax@redhat.com> - 1.0.7-11
|
||||||
|
- xorg-cf-files 1.0.6
|
||||||
|
- Drop pointless %%defattr
|
||||||
|
- HTTPS URLs
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.7-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.7-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.7-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.7-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.7-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.7-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Oct 01 2014 Adam Jackson <ajax@redhat.com> 1.0.7-4
|
||||||
|
- imake 1.0.7
|
||||||
|
- gccmakedep 1.0.3
|
||||||
|
|
||||||
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.6-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.6-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Mar 17 2014 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 1.0.6-2
|
||||||
|
- Backport AArch64 support
|
||||||
|
|
||||||
|
* Mon Jan 20 2014 Adam Jackson <ajax@redhat.com> 1.0.6-1
|
||||||
|
- imake 1.0.6
|
||||||
|
|
||||||
|
* Mon Dec 09 2013 Adam Jackson <ajax@redhat.com> 1.0.5-8
|
||||||
|
- Fix imake build with -Werror=format-security (#1037129)
|
||||||
|
|
||||||
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.5-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Feb 07 2013 Jon Ciesla <limburgher@gmail.com> 1.0.5-7
|
||||||
|
- Merge review fixes, BZ 225898.
|
||||||
|
|
||||||
|
* Thu Jan 03 2013 Adam Jackson <ajax@redhat.com> 1.0.5-6
|
||||||
|
- Drop unused patches
|
||||||
|
|
||||||
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.5-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Mar 08 2012 Adam Jackson <ajax@redhat.com> 1.0.5-4
|
||||||
|
- imake 1.0.5
|
||||||
|
- lndir 1.0.3
|
||||||
|
- makedepend 1.0.4
|
Loading…
Reference in new issue