summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul de Vrieze <pauldv@gentoo.org>2014-06-19 08:49:20 +0000
committerPaul de Vrieze <pauldv@gentoo.org>2014-06-19 08:49:20 +0000
commitb377b5df51c07bf50165fc5e0d3b60a298a960bc (patch)
tree06b765b8fd595da19216cbbee8dbc339e33125ff
parentAdd a newer firebird ebuild that also installs the fb_config script (diff)
downloadpauldv-b377b5df51c07bf50165fc5e0d3b60a298a960bc.tar.gz
pauldv-b377b5df51c07bf50165fc5e0d3b60a298a960bc.tar.bz2
pauldv-b377b5df51c07bf50165fc5e0d3b60a298a960bc.zip
Remove stale files
svn path=/trunk/overlay/; revision=170
-rw-r--r--sys-auth/pam_google_authenticator/files/pam_google_authenticator-9999-as-needed.patch16
-rw-r--r--sys-auth/pam_google_authenticator/pam_google_authenticator-9999.ebuild41
2 files changed, 0 insertions, 57 deletions
diff --git a/sys-auth/pam_google_authenticator/files/pam_google_authenticator-9999-as-needed.patch b/sys-auth/pam_google_authenticator/files/pam_google_authenticator-9999-as-needed.patch
deleted file mode 100644
index 02422cc..0000000
--- a/sys-auth/pam_google_authenticator/files/pam_google_authenticator-9999-as-needed.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -r 74cba81d489b libpam/Makefile
---- a/libpam/Makefile Sun Sep 19 10:37:52 2010 -0700
-+++ b/libpam/Makefile Tue Nov 23 10:50:15 2010 +0900
-@@ -35,10 +35,10 @@
- $(RM) *.o *.so google-authenticator pam_google_authenticator_unittest
-
- google-authenticator: google-authenticator.o base32.o hmac.o sha1.o
-- $(CC) -g $(LDFLAGS) -ldl -o $@ $+
-+ $(CC) -g $(LDFLAGS) -rdynamic -o $@ $+ -ldl
-
- pam_google_authenticator_unittest: pam_google_authenticator_unittest.o base32.o
-- $(CC) -g $(LDFLAGS) -rdynamic -ldl -lc -o $@ $+
-+ $(CC) -g $(LDFLAGS) -rdynamic -o $@ $+ -ldl -lc
-
- pam_google_authenticator.so: base32.o hmac.o sha1.o
- pam_google_authenticator_testing.so: base32.o hmac.o sha1.o
diff --git a/sys-auth/pam_google_authenticator/pam_google_authenticator-9999.ebuild b/sys-auth/pam_google_authenticator/pam_google_authenticator-9999.ebuild
deleted file mode 100644
index 7c8be13..0000000
--- a/sys-auth/pam_google_authenticator/pam_google_authenticator-9999.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="3"
-inherit eutils base mercurial pam toolchain-funcs
-
-DESCRIPTION="Example PAM module demonstrating two-factor authentication"
-HOMEPAGE="http://code.google.com/p/google-authenticator/"
-SRC_URI=""
-EHG_REPO_URI="https://google-authenticator.googlecode.com/hg/libpam/"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RESTRICT="test"
-
-DEPEND="sys-libs/pam"
-RDEPEND="${DEPEND}
- media-gfx/qrencode"
-PATCHES="${FILESDIR}/${P}-as-needed.patch ${FILESDIR}/exit_codes.patch"
-
-S="${WORKDIR}/libpam"
-
-src_unpack() {
- mercurial_fetch "${EHG_REPO_URI}" "$(basename "${EHG_REPO_URI}")" "${WORKDIR}"
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" || die
-}
-
-src_install() {
- dopammod pam_google_authenticator.so || die
-
- dobin google-authenticator || die
-
- dodoc README FILEFORMAT || die
-}