summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonny Davies <woodchip@gentoo.org>2002-11-13 06:02:00 +0000
committerDonny Davies <woodchip@gentoo.org>2002-11-13 06:02:00 +0000
commit8bbc2afc3b6f7426405e99d509486667ba7fd274 (patch)
tree9c94794a1f8a3a72735043824b95b138b8eaddaf /sys-libs/pam_mysql
parentRemoving my change for manpages. (diff)
downloadhistorical-8bbc2afc3b6f7426405e99d509486667ba7fd274.tar.gz
historical-8bbc2afc3b6f7426405e99d509486667ba7fd274.tar.bz2
historical-8bbc2afc3b6f7426405e99d509486667ba7fd274.zip
initial import
Diffstat (limited to 'sys-libs/pam_mysql')
-rw-r--r--sys-libs/pam_mysql/ChangeLog9
-rw-r--r--sys-libs/pam_mysql/files/digest-pam_mysql-0.4.71
-rw-r--r--sys-libs/pam_mysql/pam_mysql-0.4.7.ebuild32
3 files changed, 42 insertions, 0 deletions
diff --git a/sys-libs/pam_mysql/ChangeLog b/sys-libs/pam_mysql/ChangeLog
new file mode 100644
index 000000000000..566d3ccfcf7c
--- /dev/null
+++ b/sys-libs/pam_mysql/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for sys-libs/pam_mysql
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam_mysql/ChangeLog,v 1.1 2002/11/13 06:02:00 woodchip Exp $
+
+*pam_mysql-0.4.7 (13 Nov 2002)
+
+ 13 Nov 2002; Donny Davies <woodchip@gentoo.org> :
+ Initial import; reworked by me. Thanks to mw@teamzone.de (Markus Wagner)
+ and henri.schomaecker@virtual-homes.de (Henri Schomaecker) for help.
diff --git a/sys-libs/pam_mysql/files/digest-pam_mysql-0.4.7 b/sys-libs/pam_mysql/files/digest-pam_mysql-0.4.7
new file mode 100644
index 000000000000..bb5fe4d93045
--- /dev/null
+++ b/sys-libs/pam_mysql/files/digest-pam_mysql-0.4.7
@@ -0,0 +1 @@
+MD5 8442ec07c3de929720bbb8783750a1ff pam_mysql-0.4.7.tar.gz 7406
diff --git a/sys-libs/pam_mysql/pam_mysql-0.4.7.ebuild b/sys-libs/pam_mysql/pam_mysql-0.4.7.ebuild
new file mode 100644
index 000000000000..ee6d13da6197
--- /dev/null
+++ b/sys-libs/pam_mysql/pam_mysql-0.4.7.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam_mysql/pam_mysql-0.4.7.ebuild,v 1.1 2002/11/13 06:02:00 woodchip Exp $
+
+DESCRIPTION="pam_mysql is a module for pam to authenticate users with mysql"
+HOMEPAGE="http://pam-mysql.sourceforge.net/"
+
+S="${WORKDIR}/${PN}"
+SRC_URI="mirror://sourceforge/pam-mysql/${P}.tar.gz"
+DEPEND=">=sys-libs/pam-0.72 >=dev-db/mysql-3.23.38"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~ppc ~sparc ~sparc64 ~alpha"
+
+src_unpack() {
+ unpack ${A} || die
+ cd ${S} || die
+ cp Makefile Makefile.orig
+ sed -e "s%-O2%${CFLAGS}%" Makefile.orig > Makefile
+ #i dont think this is needed --woodchip
+ #-e 's%^\(export LD_D=.*\)%\1 -lz%' \
+}
+
+src_compile() {
+ emake || die
+}
+
+src_install() {
+ exeinto /lib/security
+ doexe pam_mysql.so
+ dodoc Changelog CREDITS Readme
+}