Compare commits

...

4 Commits
master ... fc6

Author SHA1 Message Date
Fedora Release Engineering 83bfa65860 dist-git conversion 2010-07-28 21:07:08 +00:00
Bill Nottingham 2e8beded3b Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:48:34 +00:00
Nikolay Vladimirov de277c06e6 *** empty log message *** 2007-06-26 02:12:33 +00:00
Kevin Fenzi 8e69999e42 Initialize branch FC-6 for libgsasl 2007-06-25 18:56:57 +00:00
5 changed files with 84 additions and 21 deletions

View File

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
libgsasl-0.2.18.tar.gz

View File

@ -1,21 +0,0 @@
# Makefile for source rpm: libgsasl
# $Id$
NAME := libgsasl
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

82
libgsasl.spec Normal file
View File

@ -0,0 +1,82 @@
Name: libgsasl
Version: 0.2.18
Release: 3%{?dist}
Summary: GNU SASL library
Group: System Environment/Libraries
License: LGPL
URL: http://www.gnu.org/software/gsasl/
Source0: http://josefsson.org/gsasl/releases/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libidn-devel
BuildRequires: krb5-devel
BuildRequires: libntlm-devel
BuildRequires: pkgconfig
%description
The library includes support for the SASL framework
and at least partial support for the CRAM-MD5, EXTERNAL,
GSSAPI, ANONYMOUS, PLAIN, SECURID, DIGEST-MD5, LOGIN,
and NTLM mechanisms.
%package devel
Summary: Development files for %{name}
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
Requires: pkgconfig
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%prep
%setup -q
%build
%configure --disable-static --disable-rpath
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p'
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
%find_lang %{name}
%clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files -f %{name}.lang
%defattr(-,root,root,-)
%doc AUTHORS COPYING NEWS README THANKS
%{_libdir}/libgsasl.so.*
%files devel
%defattr(-,root,root,-)
%doc COPYING
%{_includedir}/gsasl*
%{_libdir}/libgsasl.so
%{_libdir}/pkgconfig/libgsasl.pc
%changelog
* Tue Jun 26 2007 Nikolay Vladimirov <nikolay@vladimiroff.com> - 0.2.18-3
- added NTLM support
* Fri Jun 22 2007 Nikolay Vladimirov <nikolay@vladimiroff.com> - 0.2.18-2
- fixed mixed-use-of-spaces-and-tabs
- fixed timestamps for header files
- edited summary
* Thu Jun 21 2007 Nikolay Vladimirov <nikolay@vladimiroff.com> - 0.2.18-1
- initial release

View File

@ -0,0 +1 @@
d118c5a5a9333411ec3d6cb7973b314a libgsasl-0.2.18.tar.gz