Compare commits
5 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9993c4a41b | ||
|
|
27d0febdc5 | ||
|
|
3d779a7695 | ||
|
|
2dcfbf4a6a | ||
|
|
89456a93cd |
3 changed files with 39 additions and 16 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -1 +1,5 @@
|
|||
vte-0.25.1.tar.bz2
|
||||
/vte-0.25.90.tar.bz2
|
||||
/vte-0.25.91.tar.bz2
|
||||
/vte-0.26.0.tar.bz2
|
||||
/vte-0.26.1.tar.bz2
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
986bdf8f4e25bdb30615b69b26289909 vte-0.25.1.tar.bz2
|
||||
f20f62d4dda88938b95ba66bc509529a vte-0.26.1.tar.bz2
|
||||
|
|
|
|||
49
vte.spec
49
vte.spec
|
|
@ -3,13 +3,13 @@
|
|||
%define gtk2_version 2.12.0
|
||||
|
||||
Name: vte
|
||||
Version: 0.25.1
|
||||
Release: 2%{?dist}
|
||||
Version: 0.26.1
|
||||
Release: 1%{?dist}
|
||||
Summary: A terminal emulator
|
||||
License: LGPLv2+
|
||||
Group: User Interface/X
|
||||
#VCS: git:git://git.gnome.org/vte
|
||||
Source: http://download.gnome.org/sources/vte/0.25/%{name}-%{version}.tar.bz2
|
||||
Source: http://download.gnome.org/sources/vte/0.26/%{name}-%{version}.tar.bz2
|
||||
|
||||
BuildRequires: gtk2-devel >= %{gtk2_version}
|
||||
BuildRequires: pango-devel >= %{pango_version}
|
||||
|
|
@ -20,7 +20,7 @@ BuildRequires: libXt-devel
|
|||
BuildRequires: intltool
|
||||
|
||||
# initscripts creates the utmp group
|
||||
Prereq: initscripts
|
||||
Requires: initscripts
|
||||
|
||||
%description
|
||||
VTE is a terminal emulator widget for use with GTK+ 2.0.
|
||||
|
|
@ -47,7 +47,13 @@ vte.
|
|||
%build
|
||||
PYTHON=%{_bindir}/python`%{__python} -c "import sys ; print sys.version[:3]"`
|
||||
export PYTHON
|
||||
%configure --enable-shared --enable-static --libexecdir=%{_libdir}/%{name} --without-glX --disable-gtk-doc
|
||||
%configure \
|
||||
--enable-shared \
|
||||
--enable-static \
|
||||
--with-gtk=2.0 \
|
||||
--libexecdir=%{_libdir}/%{name} \
|
||||
--without-glX \
|
||||
--disable-gtk-doc
|
||||
make
|
||||
|
||||
%install
|
||||
|
|
@ -61,38 +67,51 @@ rm $RPM_BUILD_ROOT/%{_libdir}/lib%{name}.la
|
|||
rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.la
|
||||
rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/gtk-2.0/*.a
|
||||
|
||||
%find_lang %{name}
|
||||
%find_lang vte-0.0
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%files -f %{name}.lang
|
||||
%files -f vte-0.0.lang
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING HACKING NEWS README
|
||||
%doc src/iso2022.txt
|
||||
%doc doc/utmpwtmp.txt doc/boxes.txt doc/openi18n/UTF-8.txt doc/openi18n/wrap.txt
|
||||
%{_libdir}/*.so.*
|
||||
%dir %{_libdir}/%{name}
|
||||
%attr(2711,root,utmp) %{_libdir}/%{name}/gnome-pty-helper
|
||||
%dir %{_libdir}/vte
|
||||
%attr(2711,root,utmp) %{_libdir}/vte/gnome-pty-helper
|
||||
%{_datadir}/%{name}
|
||||
%{_libdir}/python*/site-packages/*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%{_includedir}/*
|
||||
%{_libdir}/%{name}/decset
|
||||
%{_libdir}/%{name}/interpret
|
||||
%{_libdir}/%{name}/osc
|
||||
%{_libdir}/%{name}/slowcat
|
||||
%{_libdir}/%{name}/window
|
||||
%dir %{_libdir}/vte-0.0
|
||||
%{_libdir}/vte-0.0/decset
|
||||
%{_libdir}/vte-0.0/interpret
|
||||
%{_libdir}/vte-0.0/osc
|
||||
%{_libdir}/vte-0.0/slowcat
|
||||
%{_libdir}/vte-0.0/window
|
||||
%{_libdir}/*.so
|
||||
%{_libdir}/pkgconfig/*
|
||||
%{_bindir}/%{name}
|
||||
%{_datadir}/pygtk/2.0/defs/vte.defs
|
||||
%doc %{_datadir}/gtk-doc/html/%{name}
|
||||
%doc %{_datadir}/gtk-doc/html/vte-0.0
|
||||
|
||||
%changelog
|
||||
* Wed Oct 13 2010 Kevin Fenzi <kevin@tummy.com> - 0.26.1-1
|
||||
- Update to 0.26.1
|
||||
|
||||
* Wed Sep 29 2010 Matthias Clasen <mclasen@redhat.com> 0.26.0-1
|
||||
- Update to 0.26
|
||||
|
||||
* Tue Aug 31 2010 Matthias Clasen <mclasen@redhat.com> 0.25.91-1
|
||||
- Update to 0.25.91
|
||||
|
||||
* Wed Aug 18 2010 Matthias Clasen <mclasen@redhat.com> 0.25.90-1
|
||||
- Update to 0.25.90
|
||||
|
||||
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.25.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue