]> git.pld-linux.org Git - packages/PyAuthD.git/blame - PyAuthD.spec
automatic change: use py_build/py_install macros
[packages/PyAuthD.git] / PyAuthD.spec
CommitLineData
adb5e29d 1%define snap 20070218
96db9f07
JB
2Summary: PyAuthD - authentication daemon which implements a unified NSS/PAM infractructure
3Summary(pl.UTF-8): PyAuthD - demon uwierzytelniania implementujący jednolitą infrastrukturę NSS/PAM
adb5e29d
AM
4Name: PyAuthD
5Version: 0.1
6Release: 0.%{snap}.1
7License: GPL
8Group: Libraries/Python
96db9f07 9Source0: %{name}-%{snap}.tar.gz
adb5e29d
AM
10# Source0-md5: 2b7d72bd6c75f0fa58707c25e398f87e
11URL: http://svn.asta.mh-hannover.de/categories/python/pyauthd/
96db9f07
JB
12BuildRequires: pam-devel
13BuildRequires: python
14BuildRequires: rpm-pythonprov
adb5e29d
AM
15BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17%description
18PyAuthD is an authentication daemon which implements a unified NSS/PAM
19infrastructure for creating virtual user accounts under Unix. It is
20similar to the combination of {nss,pam}_ldap to authenticate against a
21user database in LDAP, but is more extensible.
22
96db9f07
JB
23%description -l pl.UTF-8
24PyAuthD to demon uwierzytelniania implementujący jednolitą
25infrastrukturę NSS/PAM do tworzenia wirtualnych kont użytkowników pod
26Uniksem. Jest podobny do kombinacji {nss,pam}_ldap przy
27uwierzytelnianiu względem bazy użytkowników w LDAP, ale jest bardziej
28rozszerzalny.
29
adb5e29d
AM
30%prep
31%setup -q -n %{name}
32
33%build
34%{__cc} %{rpmcflags} -Wall -fPIC -DPIC -c -I. -Iinclude -o PyAuthD_client.o src/PyAuthD_client.c
35%{__cc} %{rpmcflags} -Wall -fPIC -DPIC -c -I. -Iinclude -o PyAuthD_PAM.o src/PyAuthD_PAM.c
36%{__cc} %{rpmldflags} -shared PyAuthD_client.o PyAuthD_PAM.o -o pam_PyAuthD.so -lpam
37
38%{__cc} %{rpmcflags} -Wall -fPIC -DPIC -c -I. -Iinclude -o PyAuthD_NSS_passwd.o src/PyAuthD_NSS_passwd.c
39%{__cc} %{rpmcflags} -Wall -fPIC -DPIC -c -I. -Iinclude -o PyAuthD_NSS_shadow.o src/PyAuthD_NSS_shadow.c
40%{__cc} %{rpmcflags} -Wall -fPIC -DPIC -c -I. -Iinclude -o PyAuthD_NSS_group.o src/PyAuthD_NSS_group.c
41%{__cc} %{rpmldflags} -shared PyAuthD_NSS_passwd.o PyAuthD_NSS_shadow.o PyAuthD_NSS_group.o -o libnss_PyAuthD.so.2 -Wl,-soname -Wl,libnss_PyAuthD.so.2
42
43%{__cc} %{rpmcflags} -Wall -fPIC -DPIC -c -I. -Iinclude -o PyAuthD_PPP.o src/PyAuthD_PPP.c
44%{__cc} %{rpmldflags} -shared PyAuthD_PPP.o PyAuthD_client.o -o ppp_PyAuthD.so
45
46%install
47rm -rf $RPM_BUILD_ROOT
48
7c5398da 49%py_install
adb5e29d
AM
50
51%clean
52rm -rf $RPM_BUILD_ROOT
53
54%files
55%defattr(644,root,root,755)
56%doc *.html
57%attr(755,root,root) %{py_sitedir}/*.so
This page took 0.071297 seconds and 4 git commands to generate.