diff options
author | Glynn Foster <glynn.foster@sun.com> | 2003-02-03 01:56:42 +0000 |
---|---|---|
committer | Glynn Foster <gman@src.gnome.org> | 2003-02-03 01:56:42 +0000 |
commit | 00e48cb2b53e1e932ef47a17fcc278395f375981 (patch) | |
tree | 6944bc4353fb86868c93d4c818866dff09dbcfea | |
parent | Adding Amharic translation. (diff) | |
download | zenity-00e48cb2b53e1e932ef47a17fcc278395f375981.tar.gz zenity-00e48cb2b53e1e932ef47a17fcc278395f375981.tar.bz2 zenity-00e48cb2b53e1e932ef47a17fcc278395f375981.zip |
Add spec file, thanks to Mihai T. Lazarescu.
2003-02-03 Glynn Foster <glynn.foster@sun.com>
* Makefile.am, configure.in, zenity.spec.in: Add
spec file, thanks to Mihai T. Lazarescu.
* THANKS, src/about.c: Update.
-rw-r--r-- | .cvsignore | 1 | ||||
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | configure.in | 1 | ||||
-rw-r--r-- | src/about.c | 1 | ||||
-rw-r--r-- | zenity.spec.in | 81 |
7 files changed, 94 insertions, 0 deletions
@@ -15,3 +15,4 @@ autom4te.cache aclocal.m4 Makefile.in Makefile +zenity.spec @@ -1,3 +1,10 @@ +2003-02-03 Glynn Foster <glynn.foster@sun.com> + + * Makefile.am, configure.in, zenity.spec.in: Add + spec file, thanks to Mihai T. Lazarescu. + + * THANKS, src/about.c: Update. + 2003-02-02 Daniel Yacob <locales@geez.org> * configure.in: Added Amharic (am) to ALL_LINGUAS diff --git a/Makefile.am b/Makefile.am index f339c664..5481b3af 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,6 +8,8 @@ EXTRA_DIST = \ intltool-extract.in \ intltool-merge.in \ intltool-update.in \ + zenity.spec \ + zenity.spec.in \ omf.make \ xmldocs.make \ COPYING \ @@ -3,6 +3,7 @@ Jonathan Blandford <jrb@redhat.com> Anders Carlsson <andersca@codefactory.se> John Fleck <jfleck@inkstain.net> James Henstridge <james@daa.com.au> +Mihai T. Lazarescu <mihai@email.it> Mike Newman <mike@gtnorthern.demon.co.uk> Havoc Pennington <hp@redhat.com> Kristian Rietveld <kris@gtk.org> diff --git a/configure.in b/configure.in index af276037..52f45e5a 100644 --- a/configure.in +++ b/configure.in @@ -50,6 +50,7 @@ AC_SUBST(LDFLAGS) AC_OUTPUT([ Makefile +zenity.spec po/Makefile.in src/Makefile data/Makefile diff --git a/src/about.c b/src/about.c index 9ca799cf..2fe9d3d1 100644 --- a/src/about.c +++ b/src/about.c @@ -53,6 +53,7 @@ static const gchar *author_credits[] = { "Anders Carlsson <andersca@codefactory.se>", "John Fleck <jfleck@inkstain.net>", "James Henstridge <james@daa.com.au>", + "Mihai T. Lazarescu <mihai@email.it>", "Mike Newman <mike@gtnorthern.demon.co.uk>", "Havoc Pennington <hp@redhat.com>", "Kristian Rietveld <kris@gtk.org>", diff --git a/zenity.spec.in b/zenity.spec.in new file mode 100644 index 00000000..dca2f6d6 --- /dev/null +++ b/zenity.spec.in @@ -0,0 +1,81 @@ +Summary: Zenity is a basic rewrite of gdialog, with simplicity of use in mind. +Name: zenity +Version: 1.0 +Release: 1 +Vendor: N/A +URL: http://ftp.gnome.org/pub/GNOME/sources/zenity/%{version}/ +Source: http://ftp.gnome.org/pub/GNOME/sources/zenity/%{version}/%{name}-%{version}.tar.bz2 +Copyright: GPL +License: GPL +Group: Applications/System +Packager: Mihai Lazarescu <mihai@email.it> +BuildRoot: %{_tmppath}/%{name}-buildroot +BuildRequires: autoconf +BuildRequires: automake +BuildRequires: binutils +BuildRequires: bzip2 +BuildRequires: fileutils +BuildRequires: gcc +BuildRequires: gettext +BuildRequires: glibc-devel +BuildRequires: gtk+ >= 2.0.0 +BuildRequires: gzip +BuildRequires: info +BuildRequires: intltool +BuildRequires: libglade >= 2.0.0 +BuildRequires: libgnomecanvas >= 2.0.0 +BuildRequires: libtool +BuildRequires: make +BuildRequires: popt +BuildRequires: scrollkeeper +BuildRequires: sh-utils +BuildRequires: tar +Requires: gtk+ >= 2.0.0 +Requires: libglade >= 2.0.0 +Requires: libgnomecanvas >= 2.0.0 +Provides: %{name} + +%define rpm_prefix /usr + +%description +Zenity is a basic rewrite of gdialog, without the pain involved +of trying to figure out commandline parsing. Zenity is +zen-like; simple and easy to use. + +Zenity Dialogs: Calendar, Text Entry, Error, Informational, +File Selection, List, Progress, Question, Text Information, +and Warning. + +Zenity is especially useful in scripts. + + +%prep +%setup -q +%{__rm} -rf $RPM_BUILD_ROOT + + +%build +./configure --prefix=%{rpm_prefix} +%{__make} all + + +%install +%{__rm} -rf $RPM_BUILD_ROOT%{rpm_prefix} +%{__make} prefix=$RPM_BUILD_ROOT%{rpm_prefix} install + + +%clean +%{__rm} -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root) +%doc AUTHORS COPYING ChangeLog HACKING INSTALL +%doc NEWS README THANKS TODO help + +%{rpm_prefix} + + +%changelog +* Thu Feb 1 2003 Mihai Lazarescu <mihai@email.it> +- first release for version 1.0 |