]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blob - pkgs/core/libuser/libuser.nm
3858fad9042414eb3c4c321a3fe973e4016d79dc
[people/ms/ipfire-3.x.git] / pkgs / core / libuser / libuser.nm
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include $(PKGROOT)/Include
26
27 PKG_NAME = libuser
28 PKG_VER = 0.56.9
29 PKG_REL = 1
30
31 PKG_MAINTAINER =
32 PKG_GROUP = System/Libraries
33 PKG_URL = https://fedorahosted.org/libuser/
34 PKG_LICENSE = LGPLv2+
35 PKG_SUMMARY = A user and group account administration library.
36
37 PKG_BUILD_DEPS+= cyrus-sasl-devel glib2-devel libselinux-devel openldap-devel \
38 pam-devel pkg-config popt-devel python-devel
39
40 define PKG_DESCRIPTION
41 The libuser library implements a standardized interface for \
42 manipulating and administering user and group accounts. The \
43 library uses pluggable back-ends to interface to its data sources.
44 endef
45
46 PKG_TARBALL = $(THISAPP).tar.bz2
47
48 PKG_PACKAGES += $(PKG_NAME)-devel
49
50 CONFIGURE_OPTIONS += \
51 --sysconfdir=/etc \
52 --with-ldap \
53 --with-selinux
54
55 define STAGE_PREPARE_CMDS
56 # Little hack that we don't build documentation that requires sgml2html
57 cd $(DIR_APP) && sed -e "s/^SUBDIRS = .*/SUBDIRS = po/" -i Makefile.in
58 endef