1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- Summary: Display graphical dialog boxes from shell scripts
- Name: mate-dialogs
- Version: 1.8.0
- Release: 1%{?_dist_release}
- Source0: http://pub.mate-desktop.org/releases/1.8/%{name}-%{version}.tar.xz
- License: GPLv2
- Group: System Environment/Libraries
- URL: http://mate-desktop.org/
- BuildRequires: mate-common
- BuildRequires: mate-doc-utils
- BuildRequires: gtk2-devel
- BuildRequires: gtk-doc
- BuildRequires: itstool
- BuildRequires: autoconf
- BuildRequires: automake
- BuildRequires: gnome-doc-utils
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: Takemikaduchi
- %description
- This is matedialog - a rewrite of gdialog, the MATE port of dialog
- which allows you to display dialog boxes from the commandline
- and shell scripts. If you understand, things are just as they
- are. If you don't understand, things are just as they are.
- %prep
- %setup -q
- %build
- (if ! test -x configure; then NOCONFIGURE=1 ./autogen.sh; fi)
- %configure \
- --disable-static \
- --disable-scrollkeeper
- %{__make} %{?_smp_mflags}
- %install
- %{__rm} -rf ${RPM_BUILD_ROOT}
- %{__make} install DESTDIR=${RPM_BUILD_ROOT}
- find $RPM_BUILD_ROOT -name '*.a' -exec rm -f {} \;
- find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
- %{__rm} -f ${RPM_BUILD_ROOT}/%{_bindir}/gdialog
- %find_lang %{name}
- %clean
- %{__rm} -rf ${RPM_BUILD_ROOT}
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %files -f %{name}.lang
- %defattr(-,root,root,-)
- %doc COPYING ChangeLog NEWS README
- %{_bindir}/matedialog
- %{_datadir}/help/*
- %{_datadir}/matedialog
- %{_mandir}/man1/matedialog.1.gz
- %changelog
- * Tue Apr 15 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.8.0-1
- - new upstream release
- - add BuildRequires: itstool
- * Sun Nov 10 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.2-1
- - new upstream release
- * Sun May 19 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.6.0-1
- - new upstream release
- * Wed Aug 01 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.0-1
- - new upstream release
- * Sat May 12 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.0-1
- - new upstream release
- * Fri Dec 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.0-1
- - initial build for Vine Linux
|