1.1.0
This commit is contained in:
parent
6ad5279c3c
commit
174bca9943
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
libXmu-1.0.5.tar.bz2
|
libXmu-1.0.5.tar.bz2
|
||||||
|
/libXmu-1.1.0.tar.bz2
|
||||||
|
28
libXmu.spec
28
libXmu.spec
@ -1,11 +1,12 @@
|
|||||||
|
# TODO: libXmuu split and/or elf filter emulation
|
||||||
|
|
||||||
Summary: X.Org X11 libXmu/libXmuu runtime libraries
|
Summary: X.Org X11 libXmu/libXmuu runtime libraries
|
||||||
Name: libXmu
|
Name: libXmu
|
||||||
Version: 1.0.5
|
Version: 1.1.0
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
URL: http://www.x.org
|
URL: http://www.x.org
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
||||||
|
|
||||||
Source0: ftp://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2
|
Source0: ftp://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2
|
||||||
|
|
||||||
@ -13,6 +14,7 @@ BuildRequires: xorg-x11-util-macros
|
|||||||
BuildRequires: libX11-devel
|
BuildRequires: libX11-devel
|
||||||
BuildRequires: libXext-devel
|
BuildRequires: libXext-devel
|
||||||
BuildRequires: libXt-devel
|
BuildRequires: libXt-devel
|
||||||
|
BuildRequires: xmlto
|
||||||
|
|
||||||
%description
|
%description
|
||||||
X.Org X11 libXmu/libXmuu runtime libraries
|
X.Org X11 libXmu/libXmuu runtime libraries
|
||||||
@ -32,14 +34,8 @@ X.Org X11 libXmu development package
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
# Disable static library creation by default.
|
|
||||||
%define with_static 0
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure \
|
%configure --disable-static
|
||||||
%if ! %{with_static}
|
|
||||||
--disable-static
|
|
||||||
%endif
|
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -50,6 +46,9 @@ make install DESTDIR=$RPM_BUILD_ROOT
|
|||||||
# We intentionally don't ship *.la files
|
# We intentionally don't ship *.la files
|
||||||
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
||||||
|
|
||||||
|
# fixup later
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_docdir}
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
@ -67,6 +66,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%dir %{_includedir}/X11/Xmu
|
%dir %{_includedir}/X11/Xmu
|
||||||
|
%doc doc/*.txt
|
||||||
%{_includedir}/X11/Xmu/Atoms.h
|
%{_includedir}/X11/Xmu/Atoms.h
|
||||||
%{_includedir}/X11/Xmu/CharSet.h
|
%{_includedir}/X11/Xmu/CharSet.h
|
||||||
%{_includedir}/X11/Xmu/CloseHook.h
|
%{_includedir}/X11/Xmu/CloseHook.h
|
||||||
@ -85,20 +85,20 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_includedir}/X11/Xmu/StdCmap.h
|
%{_includedir}/X11/Xmu/StdCmap.h
|
||||||
%{_includedir}/X11/Xmu/StdSel.h
|
%{_includedir}/X11/Xmu/StdSel.h
|
||||||
%{_includedir}/X11/Xmu/SysUtil.h
|
%{_includedir}/X11/Xmu/SysUtil.h
|
||||||
|
%{_includedir}/X11/Xmu/WhitePoint.h
|
||||||
%{_includedir}/X11/Xmu/WidgetNode.h
|
%{_includedir}/X11/Xmu/WidgetNode.h
|
||||||
%{_includedir}/X11/Xmu/WinUtil.h
|
%{_includedir}/X11/Xmu/WinUtil.h
|
||||||
%{_includedir}/X11/Xmu/Xct.h
|
%{_includedir}/X11/Xmu/Xct.h
|
||||||
%{_includedir}/X11/Xmu/Xmu.h
|
%{_includedir}/X11/Xmu/Xmu.h
|
||||||
%if %{with_static}
|
|
||||||
%{_libdir}/libXmu.a
|
|
||||||
%{_libdir}/libXmuu.a
|
|
||||||
%endif
|
|
||||||
%{_libdir}/libXmu.so
|
%{_libdir}/libXmu.so
|
||||||
%{_libdir}/libXmuu.so
|
%{_libdir}/libXmuu.so
|
||||||
%{_libdir}/pkgconfig/xmu.pc
|
%{_libdir}/pkgconfig/xmu.pc
|
||||||
%{_libdir}/pkgconfig/xmuu.pc
|
%{_libdir}/pkgconfig/xmuu.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Nov 08 2010 Adam Jackson <ajax@redhat.com> 1.1.0-1
|
||||||
|
- libXmu 1.1.0
|
||||||
|
|
||||||
* Fri Feb 05 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.0.5-2
|
* Fri Feb 05 2010 Peter Hutterer <peter.hutterer@redhat.com> 1.0.5-2
|
||||||
- Remove BR of libXau-devel, not needed.
|
- Remove BR of libXau-devel, not needed.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user