Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 363149 | Differences between
and this patch

Collapse All | Expand All

(-)/usr/portage/sys-auth/pam_mount/pam_mount-2.8.ebuild (-15 / +19 lines)
Lines 2-8 Link Here
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/pam_mount-2.8.ebuild,v 1.1 2011/01/20 04:32:11 mattst88 Exp $
3
# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/pam_mount-2.8.ebuild,v 1.1 2011/01/20 04:32:11 mattst88 Exp $
4
4
5
EAPI=3
5
EAPI=4
6
6
7
inherit multilib
7
inherit multilib
8
8
Lines 14-39 Link Here
14
SLOT="0"
14
SLOT="0"
15
KEYWORDS="~amd64 ~ppc ~x86"
15
KEYWORDS="~amd64 ~ppc ~x86"
16
16
17
IUSE="crypt"
17
IUSE="crypt ssl selinux"
18
DEPEND=">=sys-libs/pam-0.99
18
DEPEND=">=sys-libs/pam-0.99
19
	dev-libs/openssl
19
	>=sys-libs/libhx-3.6
20
	>=sys-libs/libhx-3.8
20
	>=dev-libs/libxml2-2.6
21
	dev-libs/libxml2
21
	crypt? ( >=sys-fs/cryptsetup-1.1.2 )
22
	>=sys-fs/cryptsetup-1.1.0
22
	ssl? ( >=dev-libs/openssl-0.9.8 )
23
	dev-util/pkgconfig
23
	selinux? ( sys-libs/libselinux )
24
	>=dev-util/pkgconfig-0.19
24
	app-arch/xz-utils"
25
	app-arch/xz-utils"
25
RDEPEND=">=sys-libs/pam-0.99
26
RDEPEND=">=sys-libs/pam-0.99
26
	dev-libs/openssl
27
	>=sys-libs/libhx-3.6
27
	>=sys-libs/libhx-3.8
28
	>=dev-libs/libxml2-2.6
28
	dev-libs/libxml2
29
	crypt? ( >=sys-fs/cryptsetup-1.1.2 )
29
	>=sys-fs/cryptsetup-1.1.0
30
	ssl? ( >=dev-libs/openssl-0.9.8 )
30
	sys-process/lsof"
31
	selinux? ( sys-libs/libselinux )"
31
32
32
src_configure() {
33
src_configure() {
33
	econf --with-slibdir="/$(get_libdir)" || die "econf failed"
34
	econf --with-slibdir="/$(get_libdir)" \
35
		$(use_with crypt cryptsetup) \
36
		$(use_with ssl crypto) \
37
		$(use_with selinux )
34
}
38
}
35
39
36
src_install() {
40
src_install() {
37
	emake DESTDIR="${D}" install || die "make install failed"
41
	emake DESTDIR="${D}" install
38
	dodoc doc/*.txt || die "dodoc failed"
42
	dodoc doc/*.txt
39
}
43
}

Return to bug 363149