Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (8a2a62deb0099b24f35ca58844138820bcff6622)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (8a2a62deb0099b24f35ca58844138820bcff6622)
  • Date: Mon, 20 May 2013 18:27:07 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

ChangeLog | 3 +++
net/pppd-chldap/BUILD | 1 +
net/pppd-chldap/CONFIGURE | 1 +
net/pppd-chldap/DEPENDS | 4 ++++
net/pppd-chldap/DETAILS | 21 +++++++++++++++++++++
net/pppd-chldap/HISTORY | 3 +++
net/pppd-chldap/INSTALL | 1 +
net/pppd-chldap/PREPARE | 1 +
net/pppd-chldap/PRE_BUILD | 16 ++++++++++++++++
9 files changed, 51 insertions(+)

New commits:
commit 8a2a62deb0099b24f35ca58844138820bcff6622
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

pppd-chldap: new spell, pppd LDAP plugin

diff --git a/ChangeLog b/ChangeLog
index 2ed9262..e9b09f4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2013-05-21 Vlad Glagolev <stealth AT sourcemage.org>
+ * net/pppd-chldap: new spell, pppd LDAP plugin
+
2013-05-12 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* gnu.gpg: refresh keys, add key 937EC0D2

diff --git a/net/pppd-chldap/BUILD b/net/pppd-chldap/BUILD
new file mode 100755
index 0000000..8f58e6d
--- /dev/null
+++ b/net/pppd-chldap/BUILD
@@ -0,0 +1 @@
+make
diff --git a/net/pppd-chldap/CONFIGURE b/net/pppd-chldap/CONFIGURE
new file mode 100755
index 0000000..f2a2d6d
--- /dev/null
+++ b/net/pppd-chldap/CONFIGURE
@@ -0,0 +1 @@
+config_query PPPD_CHLDAP_DEBUG "Enable debug messages?" n
diff --git a/net/pppd-chldap/DEPENDS b/net/pppd-chldap/DEPENDS
new file mode 100755
index 0000000..9cf41c6
--- /dev/null
+++ b/net/pppd-chldap/DEPENDS
@@ -0,0 +1,4 @@
+depends ppp &&
+depends openldap &&
+
+optional_depends openssl "" "" "for TLS/SSL support"
diff --git a/net/pppd-chldap/DETAILS b/net/pppd-chldap/DETAILS
new file mode 100755
index 0000000..7bd6fde
--- /dev/null
+++ b/net/pppd-chldap/DETAILS
@@ -0,0 +1,21 @@
+ SPELL=pppd-chldap
+ if [[ $PPPD_CHLDAP_AUTOUPDATE == y ]]; then
+ VERSION=$(date +%Y%m%d)
+ else
+ VERSION=scm
+ fi
+ FORCE_DOWNLOAD=on
+ SOURCE=$SPELL-$VERSION.tar.bz2
+ SOURCE_URL[0]=git://github.com/dkruchinin/pppd-ldap.git:$SPELL
+ SOURCE_IGNORE=volatile
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ DOCS="INSTALL TODO RADIUS-LDAPv3.schema radius.ldif $DOCS"
+ WEB_SITE=https://github.com/dkruchinin/pppd-ldap
+ ENTERED=20130521
+ LICENSE[0]=GPL
+ KEYWORDS="ppp ldap"
+ SHORT="pppd LDAP plugin"
+cat << EOF
+pppd-chldap is a fork of pppd-ldap which supports CHAP/MSCHAP/MSCHAP-v2
+authentication via LDAP server. MSCHAP and MSCHAP-v2 includes MPPE support.
+EOF
diff --git a/net/pppd-chldap/HISTORY b/net/pppd-chldap/HISTORY
new file mode 100644
index 0000000..0ad87c4
--- /dev/null
+++ b/net/pppd-chldap/HISTORY
@@ -0,0 +1,3 @@
+2013-05-21 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, DEPENDS, CONFIGURE, PREPARE, {PRE_,}BUILD, INSTALL: spell
+ created
diff --git a/net/pppd-chldap/INSTALL b/net/pppd-chldap/INSTALL
new file mode 100755
index 0000000..56b0a4c
--- /dev/null
+++ b/net/pppd-chldap/INSTALL
@@ -0,0 +1 @@
+make DESTDIR="$INSTALL_ROOT/usr" install
diff --git a/net/pppd-chldap/PREPARE b/net/pppd-chldap/PREPARE
new file mode 100755
index 0000000..9a91549
--- /dev/null
+++ b/net/pppd-chldap/PREPARE
@@ -0,0 +1 @@
+config_query PPPD_CHLDAP_AUTOUPDATE 'Automatically update on every system
update?' n
diff --git a/net/pppd-chldap/PRE_BUILD b/net/pppd-chldap/PRE_BUILD
new file mode 100755
index 0000000..3f6dede
--- /dev/null
+++ b/net/pppd-chldap/PRE_BUILD
@@ -0,0 +1,16 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+
+local PPP_VERSION="$(installed_version ppp)" &&
+sedit "s:^VERSION =.*:VERSION = ${PPP_VERSION}:" Makefile &&
+
+sedit "s:-O2:$CFLAGS -I$INSTALL_ROOT/usr/include/pppd:" Makefile &&
+sedit "s:\$(LIBDIR)/pppd/:\$(LIBDIR)/:" Makefile &&
+
+if [ "$PPPD_CHLDAP_DEBUG" == "y" ]; then
+ sedit "s:#DEBUG=y:DEBUG=y:" Makefile
+fi &&
+
+if ! is_depends_enabled $SPELL openssl; then
+ sedit "s:TLS=y:#TLS=y:" Makefile
+fi



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (8a2a62deb0099b24f35ca58844138820bcff6622), Vlad Glagolev, 05/20/2013

Archive powered by MHonArc 2.6.24.

Top of Page