summaryrefslogtreecommitdiffstats
path: root/anaconda.spec.in
diff options
context:
space:
mode:
Diffstat (limited to 'anaconda.spec.in')
-rw-r--r--anaconda.spec.in63
1 files changed, 63 insertions, 0 deletions
diff --git a/anaconda.spec.in b/anaconda.spec.in
new file mode 100644
index 000000000..ec8c10b83
--- /dev/null
+++ b/anaconda.spec.in
@@ -0,0 +1,63 @@
+Name: anaconda
+Version: @@VERSION@@
+Release: 5
+Copyright: GPL
+Summary: The Red Hat Linux first time booting configuration tool.
+Group: Applications/System
+Source: anaconda-%{PACKAGE_VERSION}.tar.gz
+Obsoletes: rhs-hwdiag setconsole
+Prereq: chkconfig
+BuildRoot: /var/tmp/anaconda-%{PACKAGE_VERSION}
+
+%description
+anaconda is usually run the first-time a pre-installed computer
+is booted. It allows the first-time user to configure localized
+attributes like timezone and root password.
+
+
+%prep
+
+%setup -q
+
+%build
+make RPM_OPT_FLAGS="$RPM_OPT_FLAGS"
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make RECFGDESTDIR=$RPM_BUILD_ROOT install-reconfig
+#strip $RPM_BUILD_ROOT/usr/sbin/ddcprobe
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post
+chkconfig --add reconfig
+
+%preun
+if [ $1 = 0 ]; then
+ chkconfig --del reconfig
+fi
+
+%files
+%defattr(-,root,root)
+%doc COPYING
+/usr/sbin/anaconda
+#/usr/sbin/ddcprobe
+/usr/share/anaconda/*
+/usr/share/locale/*/*/*
+/usr/lib/anaconda/*
+
+%config /etc/rc.d/init.d/reconfig
+
+
+%changelog
+
+* Mon Dec 06 1999 Michael Fulbright <drmike@redhat.com>
+- rename to 'anaconda' instead of 'anaconda-reconfig'
+
+* Fri Dec 03 1999 Michael Fulbright <drmike@redhat.com>
+- remove ddcprobe since we don't do X configuration in reconfig now
+
+* Tue Nov 30 1999 Michael Fulbright <drmike@redhat.com>
+- first try at packaging reconfiguration tool
+