libesmtp/libesmtp.spec

116 lines
3.1 KiB
RPMSpec
Raw Normal View History

#
# spec file for package libesmtp (Version 1.0.4)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org
#
# norootforbuild
Name: libesmtp
BuildRequires: bind-devel openssl-devel postfix
URL: http://www.stafford.uklinux.net/libesmtp/
License: GPL, LGPL
Group: Development/Libraries/C and C++
Summary: A Library for Posting Electronic Mail
Version: 1.0.4
Release: 1
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Source0: %{name}-%{version}.tar.bz2
Patch0: libesmtp-removedecls.diff
Patch1: libesmtp-lwres_includedir.patch
%description
libESMTP is a library to manage posting (or submission of) electronic
mail using SMTP to a preconfigured Mail Transport Agent (MTA) such as
Exim. It may be used as part of a Mail User Agent (MUA) or another
program that must be able to post electronic mail but where mail
functionality is not that program's primary purpose.
Authors:
--------
Brian Stafford <brian@stafford.uklinux.net>
%prep
%setup -q
%patch0
%patch1
%build
autoreconf
CFLAGS="$CFLAGS $RPM_OPT_FLAGS" \
CXXFLAGS="$CFLAGS $RPM_OPT_FLAGS" \
./configure \
--prefix=/usr \
--libdir=%{_libdir} \
--disable-static \
--with-lwres=/usr/include/bind/ \
--enable-ntlm \
--enable-etrn
make
%install
make DESTDIR=${RPM_BUILD_ROOT}/ install
%clean
rm -rf ${RPM_BUILD_ROOT}
%package devel
Summary: A Library for Posting Electronic Mail
Group: Development/Libraries/C and C++
Requires: libesmtp = %{version}
%description devel
libESMTP is a library to manage posting (or submission of) electronic
mail using SMTP to a preconfigured Mail Transport Agent (MTA) such as
Exim. It may be used as part of a Mail User Agent (MUA) or another
program that must be able to post electronic mail but where mail
functionality is not that program's primary purpose.
Authors:
--------
Brian Stafford <brian@stafford.uklinux.net>
%files
%defattr(-,root,root)
%doc README AUTHORS INSTALL ChangeLog COPYING
/usr/bin/*
%dir /usr/%_lib/esmtp-plugins
/usr/%_lib/esmtp-plugins/*so*
/usr/%_lib/libesmtp.*so.*
%files devel
%defattr(-,root,root)
/usr/%_lib/esmtp-plugins/*a
/usr/include/*
/usr/%_lib/libesmtp.*so
/usr/%_lib/*a
%changelog -n libesmtp
* Wed Jan 25 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
* Tue Jan 17 2006 - lmichnovic@suse.cz
- Updated to version 1.0.4
- enabled support for lwres: lwres_includedir.patch; bind-devel added into NFB
- enabled support for ntlm, etrn
* Wed Nov 02 2005 - dmueller@suse.de
- don't build as root
* Mon Sep 26 2005 - mls@suse.de
- move .so symlink into devel package
- make devel package require base package
* Sun May 08 2005 - mmj@suse.de
- Don't declare things we have for sure on linux
* Fri Mar 26 2004 - mmj@suse.de
- Add postfix to # neededforbuild
* Thu Feb 19 2004 - sbrabec@suse.cz
- Updated to version 1.0.2.
* Wed Jul 30 2003 - hhetter@suse.de
- initial SuSE package