source: projects/specs/trunk/m/mate-terminal/mate-terminal-vl.spec @ 8359

Revision 8359, 2.8 KB checked in by Takemikaduchi, 10 years ago (diff)

MATE-1.8.0

Line 
1Summary:        The MATE Terminal Emulator
2Name:           mate-terminal
3Version:        1.8.0
4Release:        1%{?_dist_release}
5
6Source0:        http://pub.mate-desktop.org/releases/1.8/%{name}-%{version}.tar.xz
7
8License:        GPLv2
9Group:          User Interface/Desktops
10URL:            http://mate-desktop.org/
11
12BuildRequires:  mate-common
13BuildRequires:  mate-doc-utils
14BuildRequires:  gtk2-devel
15BuildRequires:  dconf-devel
16BuildRequires:  vte-devel
17BuildRequires:  libSM-devel
18BuildRequires:  itstool
19BuildRequires:  gtk-doc
20BuildRequires:  autoconf
21BuildRequires:  automake
22
23Requires(posttrans,postun):     glib2
24Requires(post,postun):  desktop-file-utils
25
26BuildRoot:      %{_tmppath}/%{name}-%{version}-root
27
28Vendor:         Project Vine
29Distribution:   Vine Linux
30Packager:       Takemikaduchi
31
32
33%description
34This is the MATE terminal emulator application.  mate-terminal is
35only the shell (menubar, prefs dialog); the terminal emulation ("stuff
36in the middle") comes from the VTE widget. Remember this when
37choosing a bugzilla component. ;-)
38
39
40%prep
41%setup -q
42
43
44%build
45(if ! test -x configure; then NOCONFIGURE=1 ./autogen.sh; fi)
46%configure \
47        --disable-static
48
49%{__make} %{?_smp_mflags}
50
51
52%install
53%{__rm} -rf ${RPM_BUILD_ROOT}
54
55%{__make} install DESTDIR=${RPM_BUILD_ROOT}
56
57find $RPM_BUILD_ROOT -name '*.a' -exec rm -f {} \;
58find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
59
60%find_lang %{name}
61
62
63%clean
64%{__rm} -rf ${RPM_BUILD_ROOT}
65
66%post
67/sbin/ldconfig
68update-desktop-database %{_datadir}/applications >& /dev/null ||:
69
70%postun
71/sbin/ldconfig
72if [ $1 -eq 0 ]; then
73  update-desktop-database %{_datadir}/applications >& /dev/null ||:
74  glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
75fi
76
77%posttrans
78glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
79
80
81%files -f %{name}.lang
82%defattr(-,root,root,-)
83%doc COPYING ChangeLog NEWS README
84%{_bindir}/mate-terminal
85%{_bindir}/mate-terminal.wrapper
86%{_datadir}/applications/mate-terminal.desktop
87%{_datadir}/glib-2.0/schemas/org.mate.terminal.gschema.xml
88%{_datadir}/help/*
89%{_datadir}/%{name}
90%{_mandir}/man1/mate-terminal.1.gz
91
92
93%changelog
94* Wed Apr 16 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.8.0-1
95- new upstream release
96- remove Patch0 (mate-terminal-1.4.0-ja.po.patch)
97- add BuildRequires: itstool
98
99* Sun Dec 29 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.1-2
100- rebuild with VineSeed environment
101
102* Sun May 19 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.1-1
103- new upstream release
104- remove BuildRequires: mate-conf-devel
105- add BuildRequires: dconf-devel
106
107* Thu Aug 02 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.0-1
108- new upstream release
109- add Patch0 (mate-terminal-1.4.0-ja.po.patch)
110
111* Sat May 12 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.1-1
112- new upstream release
113
114* Fri Dec 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.0-2
115- change category
116
117* Fri Dec 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.0-1
118- initial build for Vine Linux
119
Note: See TracBrowser for help on using the repository browser.