# Detect the distribution in use %global __despace head -n 1 | tr -d '[:space:]' | sed -e 's/[(].*[)]//g' %global __lower4 cut -c 1-4 | tr '[:upper:]' '[:lower:]' %global __distfile %([ -f /etc/SuSE-release ] && echo /etc/SuSE-release || echo /etc/redhat-release) %global __distinit %(sed -e 's/ release .*//' -e 's/\\([A-Za-z]\\)[^ ]*/\\1/g' %{__distfile} | %{__despace} | %{__lower4}) %global __distvers %(sed -e 's/.* release \\([^. ]*\\).*/\\1/' %{__distfile} | %{__despace}) # Identify Alma, CentOS, CentOS Stream and Rocky Linux as rhel %if "%{__distinit}" == "a" || "%{__distinit}" == "c" || "%{__distinit}" == "cl" || "%{__distinit}" == "cs" || "%{__distinit}" == "rl" %global __distinit rhel %endif # Dist tag for Fedora is still "fc" %if "%{__distinit}" == "f" %global __distinit fc %endif %global desktopvendor city-fan.org Name: mgdiff License: MIT Version: 1.0 Release: 13.%{__distinit}%{__distvers} Summary: Compare files side by side URL: http://ftp.x.org/contrib/applications/mgdiff.README Source0: http://ftp.x.org/contrib/applications/mgdiff.tar.gz Source1: http://ftp.x.org/contrib/applications/mgdiff.README Source2: mgdiff.desktop Patch0: mgdiff-1.0.diff Patch1: mgdiff-1.0-getline.patch BuildRequires: coreutils BuildRequires: desktop-file-utils BuildRequires: diffutils BuildRequires: gcc BuildRequires: imake BuildRequires: libXmu-devel BuildRequires: libXpm-devel BuildRequires: make # Build against lesstiff for Fedora 23 and before, else openmotif %if (0%{?fedora} && 0%{?fedora} <= 23) BuildRequires: lesstif-devel %else BuildRequires: openmotif-devel %endif BuildRequires: sed %description Mgdiff is a graphical front end to the Unix diff command based upon X11 and the Motif widget set. It allows the user to select two files for comparison, runs the diff command, parses the output and presents the results graphically. %prep %setup -q -n %{name} # Linux fixes from SuSE, tweaked to apply against slightly later upstream tarball %patch -P 0 # Don't re-use standard function name getline() %patch -P 1 # Upstream README cp -a %{SOURCE1} README xmkmf -a # Replace deprecated _BSD_SOURCE and _SVID_SOURCE with _DEFAULT_SOURCE # .. unless we're on EL-7 or Fedora < 21, where it doesn't work %if ! ( (0%{?fedora} && 0%{?fedora} <= 20) || (0%{?rhel} && 0%{?rhel} <= 7) ) sed -i -e 's|_BSD_SOURCE|_DEFAULT_SOURCE|' -e 's|_SVID_SOURCE|_DEFAULT_SOURCE|' Makefile %endif %build make CCOPTIONS="%{optflags}" EXTRA_LDOPTIONS="%{?__global_ldflags}" %install make INSTPGMFLAGS= DESTDIR=%{buildroot} install install.man desktop-file-install \ --vendor %{desktopvendor} \ --add-category X-Red-Hat-Base \ --add-category X-Fedora \ --dir %{buildroot}%{_datadir}/applications \ %{SOURCE2} # xmkmf makes this sometimes rm -f %{buildroot}/usr/lib/X11/app-defaults %files %doc README %{_bindir}/mgdiff %{_datadir}/applications/*.desktop %{_datadir}/X11/app-defaults/Mgdiff %{_mandir}/man1/mgdiff.1* %changelog * Thu Mar 30 2023 Paul Howarth - 1.0-13 - License is SPDX: MIT - Avoid deprecated patch syntax - Use distribution linker flags - Replace deprecated _BSD_SOURCE and _SVID_SOURCE with _DEFAULT_SOURCE unless we're on EL-7 or Fedora < 21, where it doesn't work * Mon Mar 19 2018 Paul Howarth - 1.0-12 - Drop support for EOL distributions prior to F-13 - Drop legacy BuildRoot: and Group: tags - Drop explicit buildroot cleaning in %%install section - Drop explicit %%clean section - Drop %%defattr, redundant since rpm 4.4 - Always build with Modular X * Wed Oct 7 2015 Paul Howarth - 1.0-11 - Build with openmotif from Fedora 24 onwards * Fri Nov 7 2014 Paul Howarth - 1.0-10 - Don't re-use standard function name getline() * Tue Aug 2 2011 Paul Howarth - 1.0-9 - Add real upstream source URL and use that tarball - Nobody else likes macros for commands - Fix dist tag for CentOS 6 and Scientific Linux * Wed May 26 2010 Paul Howarth - 1.0-8 - Fix dist tag for RHEL-6 Beta * Thu Feb 25 2010 Paul Howarth - 1.0-7 - Dist tag for Rawhide no longer needs special-casing * Tue Jun 23 2009 Paul Howarth - 1.0-6 - Define RPM macros in global scope - Add URL tag and fix license tag to placate rpmlint * Tue Jun 5 2007 Paul Howarth - 1.0-5 - Fix build and dist tag for Fedora 7 onwards - Support builds on Red Hat Enterprise Linux 5 onwards * Mon Sep 11 2006 Paul Howarth - 1.0-4 - Fix distribution-detection to work with development releases - Tweak buildreq conditionals to work with more distribution releases - Build against lesstif for FC6 onwards - RHEL3 needs XFree86 for /usr/X11R6/bin/archexec * Mon Aug 7 2006 Paul Howarth - 1.0-3 - Add buildreq libXpm-devel for modular X * Wed Jul 12 2006 Paul Howarth - 1.0-2 - Enable build on Fedora Core 5 (modular X) * Fri Feb 10 2006 Paul Howarth - 1.0-1 - Port from SuSE to Fedora Core 4 * Tue Apr 27 2004 - werner@ssue.de - Avoid compiler warnings - Use mkstemp() instead of tempnam() * Sun Jan 11 2004 - adrian@suse.de - build as user * Sat Aug 16 2003 - adrian@suse.de - add desktop file * Thu Jun 12 2003 - kukuk@suse.de - Use BuildRoot, fix filelist * Tue Sep 17 2002 - ro@suse.de - removed bogus self-provides * Sat May 12 2001 - schwab@suse.de - Fix missing declarations. * Tue Nov 21 2000 - ro@suse.de - use openmotif * Mon Sep 13 1999 - bs@suse.de - ran old prepare_spec on spec file to switch to new prepare_spec * Mon Jul 12 1999 - uli@suse.de - now builds with lesstif * Mon Nov 09 1998 - ro@suse.de - use basename from libc for glibc * Thu May 07 1998 - fehr@suse.de - add library -lXp for Motif 2.1 * Tue Dec 09 1997 - ro@suse.de - build static and dynamic version * Tue Jun 24 1997 - werner@suse.de - recognise all latin1 umlauts as characters in system with and without correct working locale * Thu Jan 02 1997 - kfr@suse.de - recognise german umlauts as text: dirty hack, but also call "setlocale" for correctly installed systems...