46 lines
1.1 KiB
Bash
46 lines
1.1 KiB
Bash
# Copyright 2004-2017 Sabayon
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
inherit autotools eutils
|
|
|
|
DESCRIPTION="A user and group account administration library"
|
|
HOMEPAGE="https://pagure.io/libuser"
|
|
SRC_URI="https://releases.pagure.org/libuser/${P}.tar.xz"
|
|
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="~amd64 ~x86"
|
|
SLOT="0"
|
|
IUSE="ldap +popt sasl selinux"
|
|
COMMON_DEPEND="dev-libs/glib:2
|
|
ldap? ( net-nds/openldap )
|
|
popt? ( dev-libs/popt )
|
|
sasl? ( dev-libs/cyrus-sasl )
|
|
selinux? ( sys-libs/libselinux )"
|
|
DEPEND="app-text/linuxdoc-tools
|
|
sys-devel/bison
|
|
sys-devel/gettext
|
|
${COMMON_DEPEND}"
|
|
RDEPEND="${COMMON_DEPEND}"
|
|
|
|
src_prepare() {
|
|
mv apps/{,libuser-}lid.1 || die
|
|
sed -i 's: apps/lid\.1 : apps/libuser-lid.1 :' \
|
|
Makefile.am || die
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
econf $(use_with ldap) $(use_with popt) $(use_with sasl) \
|
|
$(use_with selinux) --with-python
|
|
}
|
|
|
|
pkg_postinst() {
|
|
if [[ -z ${REPLACING_VERSIONS} ]] \
|
|
|| [[ ${REPLACING_VERSIONS} < 0.60-r1 ]];
|
|
then
|
|
einfo "lid.1 was renamed to libuser-lid.1 to avoid conflict"
|
|
einfo "with dev-util/idutils (seen in 4.6)."
|
|
fi
|
|
}
|