diff options
author | Kozlov Dmitry <dima@server> | 2010-10-14 14:30:53 +0400 |
---|---|---|
committer | Kozlov Dmitry <dima@server> | 2010-10-14 14:30:53 +0400 |
commit | 84ff56a83a9f6b29d3300aff13ede9afc73b5a68 (patch) | |
tree | 9284cb5b797dd7d68350cd937da11cc2f579114f /contrib/gentoo/net-dialup/accel-pptp/accel-pptp-9999.ebuild | |
parent | 763fe9e3ba0faeea25cc423152a065900f901a53 (diff) | |
download | accel-ppp-84ff56a83a9f6b29d3300aff13ede9afc73b5a68.tar.gz accel-ppp-84ff56a83a9f6b29d3300aff13ede9afc73b5a68.zip |
due to libnl-1 is not thread safe, l2tp and shaper updated to use libnl-2
Diffstat (limited to 'contrib/gentoo/net-dialup/accel-pptp/accel-pptp-9999.ebuild')
-rw-r--r-- | contrib/gentoo/net-dialup/accel-pptp/accel-pptp-9999.ebuild | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/contrib/gentoo/net-dialup/accel-pptp/accel-pptp-9999.ebuild b/contrib/gentoo/net-dialup/accel-pptp/accel-pptp-9999.ebuild index 06ae2b81..7632da83 100644 --- a/contrib/gentoo/net-dialup/accel-pptp/accel-pptp-9999.ebuild +++ b/contrib/gentoo/net-dialup/accel-pptp/accel-pptp-9999.ebuild @@ -14,11 +14,13 @@ HOMEPAGE="http://accel-pptp.sourceforge.net/" SLOT="0" LICENSE="GPL" KEYWORDS="~amd64 ~x86" -IUSE="postgres debug" +IUSE="postgres debug l2tp shaper" -DEPEND="dev-libs/openssl +DEPEND=">=sys-libs/glibc-2.8 + dev-libs/openssl dev-libs/libaio - dev-libs/libnl + l2tp? ( =dev-libs/libnl-9999 ) + shaper? ( =dev-libs/libnl-9999 ) postgres? ( >=dev-db/postgresql-base-8.1 )" RDEPEND="$DEPEND @@ -47,6 +49,14 @@ src_configure() { if use postgres; then mycmakeargs+=( "-DLOG_PGSQL=TRUE" ) fi + + if use l2tp; then + mycmakeargs+=( "-DL2TP=TRUE" ) + fi + + if use shaper; then + mycmakeargs+=( "-DSHAPER=TRUE" ) + fi cmake-utils_src_configure } |