12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- Summary: Display graphical dialog boxes from shell scripts
- Name: mate-dialogs
- Version: 1.4.0
- Release: 1%{?_dist_release}
- Source0: http://pub.mate-desktop.org/releases/1.4/%{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: 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}/mate/help
- %{_datadir}/matedialog
- %{_datadir}/omf/matedialog
- %{_mandir}/man1/matedialog.1.gz
- %changelog
- * 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
|