packages: kstart/kstart.spec (NEW) - initial revision
baggins
baggins at pld-linux.org
Thu Oct 21 21:44:44 CEST 2010
Author: baggins Date: Thu Oct 21 19:44:44 2010 GMT
Module: packages Tag: HEAD
---- Log message:
- initial revision
---- Files affected:
packages/kstart:
kstart.spec (NONE -> 1.1) (NEW)
---- Diffs:
================================================================
Index: packages/kstart/kstart.spec
diff -u /dev/null packages/kstart/kstart.spec:1.1
--- /dev/null Thu Oct 21 21:44:44 2010
+++ packages/kstart/kstart.spec Thu Oct 21 21:44:39 2010
@@ -0,0 +1,64 @@
+# $Revision$, $Date$
+#
+# Conditional build:
+%bcond_with krb5 # build with MIT kerberos
+#
+Summary: Obtain and optionally keep active a Kerberos v5 ticket
+Name: kstart
+Version: 3.16
+Release: 0.1
+License: MIT
+Group: Applications
+Source0: http://archives.eyrie.org/software/kerberos/%{name}-%{version}.tar.gz
+# Source0-md5: cff45f24afef93305633b7d2480cd418
+URL: http://www.eyrie.org/~eagle/software/kstart/
+%if %{with krb5}
+BuildRequires: krb5-devel
+%else
+BuildRequires: heimdal-devel
+%endif
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+k5start and krenew are modified versions of kinit which add support
+for running as a daemon to maintain a ticket cache, running a command
+with credentials from a keytab and maintaining a ticket cache until
+that command completes, obtaining AFS tokens (via an external aklog)
+after obtaining tickets, and creating an AFS PAG for a command.
+They are primarily useful in conjunction with long-running jobs; for
+moving ticket handling code out of servers, cron jobs, or daemons; and
+to obtain tickets and AFS tokens with a single command.
+
+%prep
+%setup -q
+
+%build
+%configure \
+ --disable-k4start
+
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+ DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc LICENSE NEWS README TODO
+%attr(755,root,root) %{_bindir}/*
+%{_mandir}/man1/*.1*
+
+%define date %(echo `LC_ALL="C" date +"%a %b %d %Y"`)
+%changelog
+* %{date} PLD Team <feedback at pld-linux.org>
+All persons listed below can be reached at <cvs_login>@pld-linux.org
+
+$Log$
+Revision 1.1 2010/10/21 19:44:39 baggins
+- initial revision
+
================================================================
More information about the pld-cvs-commit
mailing list