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

Revision 9876, 3.7 KB checked in by Takemikaduchi, 8 years ago (diff)

new upstream release

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