aboutsummaryrefslogtreecommitdiff
path: root/redhat/dejagnu.spec
diff options
context:
space:
mode:
authorRob Savoye <rob@welcomehome.org>2001-02-05 04:26:49 +0000
committerRob Savoye <rob@welcomehome.org>2001-02-05 04:26:49 +0000
commit229fa96029bd352626b934a724c88eba6a1350f7 (patch)
treecd107e9fab160ca92d55e594e878d0d9bb776cce /redhat/dejagnu.spec
parent20f1185dd84bcadf4b238d1d2ca18f5ca79157d4 (diff)
Initial revision
Diffstat (limited to 'redhat/dejagnu.spec')
-rw-r--r--redhat/dejagnu.spec77
1 files changed, 77 insertions, 0 deletions
diff --git a/redhat/dejagnu.spec b/redhat/dejagnu.spec
new file mode 100644
index 0000000..dcc37ed
--- /dev/null
+++ b/redhat/dejagnu.spec
@@ -0,0 +1,77 @@
+%define version 1.4
+
+Summary: A front end for testing other programs.
+Name: dejagnu
+Version: %{version}
+Release: 0
+Copyright: GPL
+Source: ftp://dejagnu.on.openprojects.net/pub/dejagnu/snapshots/dejagnu-1.4.tar.gz
+
+#Patch0: dejagnu-1.4.0-rth.patch
+#Patch1: dejagnu-1.4.0-glibc21.patch
+Group: Development/Tools
+# Since we're building this on a debian system, we can't require these.
+#Requires: tcl >= 8.0, expect >= 5.21
+BuildRoot: /tmp/%{name}-root
+
+%description
+DejaGnu is an Expect/Tcl based framework for testing other programs.
+DejaGnu has several purposes: to make it easy to write tests for any
+program; to allow you to write tests which will be portable to any
+host or target where a program must be tested; and to standardize the
+output format of all tests (making it easier to integrate the testing
+into software development).
+
+%prep
+%setup -q -n dejagnu-%{version}
+
+%build
+./configure -v
+make
+
+%install
+rm -rf $RPM_BUILD_ROOT
+mkdir -p $RPM_BUILD_ROOT/usr
+mkdir -p $RPM_BUILD_ROOT/usr/share/dejagnu
+mkdir -p $RPM_BUILD_ROOT/usr/doc/dejagnu-%{version}
+make prefix=$RPM_BUILD_ROOT/usr install
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root)
+/usr/bin/runtest
+/usr/share/dejagnu/*
+
+# %config site.exp
+
+%doc COPYING NEWS README AUTHORS INSTALL ChangeLog doc/overview
+
+%changelog
+* Sun Oct 31 1999 Rob Savoye <rob@welcomehome.org>
+- updated to the latest snapshot
+- added doc files
+- added the site.exp config file
+
+* Mon Jul 12 1999 Tim Powers <timp@redhat.com>
+- updated to 19990628
+- updated patches as needed
+- added %defattr in files section
+
+* Wed Mar 10 1999 Jeff Johnson <jbj@redhat.com>
+- add alpha expect patch (#989)
+- use %configure
+
+* Thu Dec 17 1998 Jeff Johnson <jbj@redhat.com>
+- Update to 19981215.
+
+* Thu Nov 12 1998 Jeff Johnson <jbj@redhat.com>
+- Update to 1998-10-29.
+
+* Wed Jul 8 1998 Jeff Johnson <jbj@redhat.com>
+- Update to 1998-05-28.
+
+* Sun Feb 1 1998 Jeff Johnson <jbj@jbj.org>
+- Create.
+ \ No newline at end of file