source: trunk/third/zenity/zenity.spec @ 21554

Revision 21554, 2.1 KB checked in by ghudson, 20 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r21553, which included commits to RCS files with non-trunk default branches.
Line 
1%define version 2.8.2
2%define name zenity
3Summary: Zenity is a basic rewrite of gdialog, with simplicity of use in mind.
4Name: %{name}
5Version: %{version}
6Release: 1
7Vendor: N/A
8URL: http://ftp.gnome.org/pub/GNOME/sources/zenity/%{version}/
9Source: http://ftp.gnome.org/pub/GNOME/sources/zenity/%{version}/%{name}-%{version}.tar.bz2
10License: LGPL
11Group: Applications/System
12Packager: Mihai Lazarescu <mihai@email.it>
13BuildRoot: %{_tmppath}/%{name}-buildroot
14BuildRequires: autoconf
15BuildRequires: automake
16BuildRequires: binutils
17BuildRequires: bzip2
18BuildRequires: fileutils
19BuildRequires: gcc
20BuildRequires: gettext
21BuildRequires: glibc-devel
22BuildRequires: gtk+ >= 2.0.0
23BuildRequires: gzip
24BuildRequires: info
25BuildRequires: intltool
26BuildRequires: libglade >= 2.0.0
27BuildRequires: libgnomecanvas >= 2.0.0
28BuildRequires: libtool
29BuildRequires: make
30BuildRequires: popt
31BuildRequires: scrollkeeper
32BuildRequires: sh-utils
33BuildRequires: tar
34Requires: gtk+ >= 2.0.0
35Requires: libglade >= 2.0.0
36Requires: libgnomecanvas >= 2.0.0
37Provides: %{name}
38
39%define rpm_prefix /usr
40
41%description
42Zenity is a basic rewrite of gdialog, without the pain involved
43of trying to figure out commandline parsing.  Zenity is
44zen-like; simple and easy to use.
45
46Zenity Dialogs: Calendar, Text Entry, Error, Informational,
47File Selection, List, Progress, Question, Text Information,
48and Warning.
49
50Zenity is especially useful in scripts.
51
52
53%prep
54%setup -q
55[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
56
57
58%build
59./configure --prefix=%{rpm_prefix}
60%{__make} all
61
62
63%install
64[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
65%{__make} prefix=$RPM_BUILD_ROOT%{rpm_prefix} install
66
67
68%clean
69%{__rm} -rf $RPM_BUILD_ROOT%{rpm_prefix}
70
71
72%files
73%defattr(-,root,root)
74%doc AUTHORS COPYING ChangeLog HACKING INSTALL
75%doc NEWS README THANKS TODO help
76
77%{rpm_prefix}
78
79
80%changelog
81* Thu Mar 6 2003 Glynn Foster <glynn.foster@sun.com>
82- Fix up the %defines. Not sure if this makes a difference but it
83  seems cleaner to me
84
85* Thu Feb 1 2003 Mihai Lazarescu <mihai@email.it>
86- first release for version 1.0
Note: See TracBrowser for help on using the repository browser.