X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@lists.alpinelinux.org Received: from mail-gw0-f54.google.com (mail-gw0-f54.google.com [74.125.83.54]) by lists.alpinelinux.org (Postfix) with ESMTP id 309F41EB587 for ; Sat, 23 Oct 2010 19:39:38 +0000 (UTC) Received: by gwaa18 with SMTP id a18so971328gwa.13 for ; Sat, 23 Oct 2010 12:39:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer; bh=j5rmL/vWR9BrtxZT37Wr/9EMN9rcg5wcM52i+nicoZQ=; b=I0L7SOp7ls0VEIVbeglZr4EbKLpo8o7pfl72D7BeakbwczYekK1Xp2rF916Y3JEou1 JwwzRvmsnKlcBAEgHMsi96p/KxuZD9HVBLKN+uZ+1wl+M7ztb9tSFDL+D9Fqoy5B1bIq MIWsD4C1Zgg+c95Q69uV7fHx0w5EA6blixCy4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=M0ildGay58ohhPpKjYdXtfe3cIxz74HMJZrs4n/XYV9Yz3I8Lh2CgpJGW6+O/PGqKH Ue5YoobT+EqM1bnGsx7DHt02Z+1FvsKUNW96XU66FUd68622vMni4y77py5k91Vg289f w/K9WbWsy3Q0A5OZMEln6wcCUSqi8jgpY0JZs= Received: by 10.150.198.10 with SMTP id v10mr9058569ybf.236.1287862776788; Sat, 23 Oct 2010 12:39:36 -0700 (PDT) Received: from localhost.localdomain (mx1.wtbts.ca [216.249.2.10]) by mx.google.com with ESMTPS id z23sm3728419yhc.32.2010.10.23.12.39.35 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 23 Oct 2010 12:39:36 -0700 (PDT) From: Jeff Bilyk To: alpine-devel@lists.alpinelinux.org Cc: Jeff Bilyk Subject: [alpine-devel] [PATCH] main/apache-mod-ntlm-winbind: moved from testing Date: Sat, 23 Oct 2010 19:39:21 +0000 Message-Id: <1287862761-2266-1-git-send-email-jbilyk@gmail.com> X-Mailer: git-send-email 1.7.3.1 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- main/apache-mod-auth-ntlm-winbind/APKBUILD | 34 ++++++++++++++++++++ .../mod-auth-ntlm-winbind.conf | 1 + testing/apache-mod-auth-ntlm-winbind/APKBUILD | 34 -------------------- .../mod-auth-ntlm-winbind.conf | 1 - 4 files changed, 35 insertions(+), 35 deletions(-) create mode 100644 main/apache-mod-auth-ntlm-winbind/APKBUILD create mode 100644 main/apache-mod-auth-ntlm-winbind/mod-auth-ntlm-winbind.conf delete mode 100644 testing/apache-mod-auth-ntlm-winbind/APKBUILD delete mode 100644 testing/apache-mod-auth-ntlm-winbind/mod-auth-ntlm-winbind.conf diff --git a/main/apache-mod-auth-ntlm-winbind/APKBUILD b/main/apache-mod-auth-ntlm-winbind/APKBUILD new file mode 100644 index 0000000..1165ddd --- /dev/null +++ b/main/apache-mod-auth-ntlm-winbind/APKBUILD @@ -0,0 +1,34 @@ +# Contributor: Jeff Bilyk +# Maintainer: Natanael Copa +pkgname=apache-mod-auth-ntlm-winbind +pkgver=0.1 +pkgrel=1 +pkgdesc="Authentication module for Apache using NTLM protocol with winbind helper" +url="http://samba.org/ftp/unpacked/lorikeet/mod_auth_ntlm_winbind/" +license="Apache2" +depends="apache2 samba winbind" +makedepends="autoconf apache2-dev apr-util-dev apr-dev" +source="http://samba.org/ftp/unpacked/lorikeet/mod_auth_ntlm_winbind/mod_auth_ntlm_winbind.c +http://samba.org/ftp/unpacked/lorikeet/mod_auth_ntlm_winbind/configure.in +http://samba.org/ftp/unpacked/lorikeet/mod_auth_ntlm_winbind/Makefile.in +mod-auth-ntlm-winbind.conf" + +build() { + cd "$srcdir" + autoconf + ./configure + make DESTDIR="$pkgdir" || return 1 +} + +package() { + cd "$srcdir" + mkdir -p "$pkgdir"/etc/apache2/conf.d + mkdir -p "$pkgdir"/usr/lib/apache2 + install mod-auth-ntlm-winbind.conf "$pkgdir"/etc/apache2/conf.d/mod-auth-ntlm-winbind.conf + install "$srcdir"/.libs/mod_auth_ntlm_winbind.so "$pkgdir"/usr/lib/apache2/mod_auth_ntlm_winbind.so +} + +md5sums="01d32e311e6a404bcf4179c863081818 mod_auth_ntlm_winbind.c +e1490dae6e468d4bc56154b16e5d8c24 configure.in +410de8b0ac7ffe5c44a71d094190187d Makefile.in +331b392c7aaa13b3a9ea8780ce2db3d4 mod-auth-ntlm-winbind.conf" diff --git a/main/apache-mod-auth-ntlm-winbind/mod-auth-ntlm-winbind.conf b/main/apache-mod-auth-ntlm-winbind/mod-auth-ntlm-winbind.conf new file mode 100644 index 0000000..c797f63 --- /dev/null +++ b/main/apache-mod-auth-ntlm-winbind/mod-auth-ntlm-winbind.conf @@ -0,0 +1 @@ +LoadModule auth_ntlm_winbind_module modules/mod_auth_ntlm_winbind.so diff --git a/testing/apache-mod-auth-ntlm-winbind/APKBUILD b/testing/apache-mod-auth-ntlm-winbind/APKBUILD deleted file mode 100644 index 1165ddd..0000000 --- a/testing/apache-mod-auth-ntlm-winbind/APKBUILD +++ /dev/null @@ -1,34 +0,0 @@ -# Contributor: Jeff Bilyk -# Maintainer: Natanael Copa -pkgname=apache-mod-auth-ntlm-winbind -pkgver=0.1 -pkgrel=1 -pkgdesc="Authentication module for Apache using NTLM protocol with winbind helper" -url="http://samba.org/ftp/unpacked/lorikeet/mod_auth_ntlm_winbind/" -license="Apache2" -depends="apache2 samba winbind" -makedepends="autoconf apache2-dev apr-util-dev apr-dev" -source="http://samba.org/ftp/unpacked/lorikeet/mod_auth_ntlm_winbind/mod_auth_ntlm_winbind.c -http://samba.org/ftp/unpacked/lorikeet/mod_auth_ntlm_winbind/configure.in -http://samba.org/ftp/unpacked/lorikeet/mod_auth_ntlm_winbind/Makefile.in -mod-auth-ntlm-winbind.conf" - -build() { - cd "$srcdir" - autoconf - ./configure - make DESTDIR="$pkgdir" || return 1 -} - -package() { - cd "$srcdir" - mkdir -p "$pkgdir"/etc/apache2/conf.d - mkdir -p "$pkgdir"/usr/lib/apache2 - install mod-auth-ntlm-winbind.conf "$pkgdir"/etc/apache2/conf.d/mod-auth-ntlm-winbind.conf - install "$srcdir"/.libs/mod_auth_ntlm_winbind.so "$pkgdir"/usr/lib/apache2/mod_auth_ntlm_winbind.so -} - -md5sums="01d32e311e6a404bcf4179c863081818 mod_auth_ntlm_winbind.c -e1490dae6e468d4bc56154b16e5d8c24 configure.in -410de8b0ac7ffe5c44a71d094190187d Makefile.in -331b392c7aaa13b3a9ea8780ce2db3d4 mod-auth-ntlm-winbind.conf" diff --git a/testing/apache-mod-auth-ntlm-winbind/mod-auth-ntlm-winbind.conf b/testing/apache-mod-auth-ntlm-winbind/mod-auth-ntlm-winbind.conf deleted file mode 100644 index c797f63..0000000 --- a/testing/apache-mod-auth-ntlm-winbind/mod-auth-ntlm-winbind.conf +++ /dev/null @@ -1 +0,0 @@ -LoadModule auth_ntlm_winbind_module modules/mod_auth_ntlm_winbind.so -- 1.7.3.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---