summaryrefslogtreecommitdiff
path: root/sys-auth/libnss-pgsql/libnss-pgsql-1.4.0.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'sys-auth/libnss-pgsql/libnss-pgsql-1.4.0.ebuild')
-rw-r--r--sys-auth/libnss-pgsql/libnss-pgsql-1.4.0.ebuild56
1 files changed, 0 insertions, 56 deletions
diff --git a/sys-auth/libnss-pgsql/libnss-pgsql-1.4.0.ebuild b/sys-auth/libnss-pgsql/libnss-pgsql-1.4.0.ebuild
deleted file mode 100644
index 8a9ab45b8768..000000000000
--- a/sys-auth/libnss-pgsql/libnss-pgsql-1.4.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit autotools eutils multilib
-
-KEYWORDS="~x86"
-
-DESCRIPTION="Name Service Switch module for use with PostgreSQL"
-HOMEPAGE="http://pgfoundry.org/projects/sysauth/"
-SRC_URI="http://pgfoundry.org/frs/download.php/605/${P}.tgz"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-DEPEND="dev-db/postgresql
- app-text/xmlto"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/${P}-gentoo.patch"
- epatch "${FILESDIR}/${P}-schema.patch"
- eautoreconf
-}
-
-src_compile() {
- econf \
- --libdir=/lib \
- --with-docdir=/usr/share/doc/${PF}/html || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- insinto /$(get_libdir)
- doins src/.libs/libnss_pgsql.so.2.0.0
- dosym libnss_pgsql.so.2.0.0 /lib/libnss_pgsql.so.2
- dosym libnss_pgsql.so.2.0.0 /lib/libnss_pgsql.so
-
- dodoc AUTHORS ChangeLog NEWS README
- dohtml doc/*.{png,html}
- insinto /usr/share/doc/${PF}/examples
- doins conf/*
-}
-
-pkg_postinst() {
- elog "Next steps:"
- elog "1. Create the required tables in the database:"
- elog " $ psql a_database -f ${ROOT}usr/share/${PN}/conf/dbschema.sql"
- elog "2. Create the configuration file '/etc/nss-pgsql.conf'"
- elog " You can copy the example from ${ROOT}usr/share/doc/${PF}/examples/nss-pgsql.conf"
- elog "3. Edit /etc/nsswitch.conf to use the NSS service 'pgsql'"
- elog " An example is available here: ${ROOT}usr/share/doc/${PF}/examples/nsswitch.conf"
-}