summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2011-05-16 09:15:34 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2011-05-16 09:15:34 +0000
commitc19314386c26a810fd191389c1d38e288f85bf71 (patch)
treeee04246bd21a53cabf3fbcb6c444ac2f0169993b /sys-auth/pam_chroot
parentRemove old version; bypass Makefile and simply build the module within the eb... (diff)
downloadgentoo-2-c19314386c26a810fd191389c1d38e288f85bf71.tar.gz
gentoo-2-c19314386c26a810fd191389c1d38e288f85bf71.tar.bz2
gentoo-2-c19314386c26a810fd191389c1d38e288f85bf71.zip
Remove unused files.
(Portage version: 2.2.0_alpha33/cvs/Linux x86_64)
Diffstat (limited to 'sys-auth/pam_chroot')
-rw-r--r--sys-auth/pam_chroot/ChangeLog6
-rw-r--r--sys-auth/pam_chroot/files/pam_chroot-0.9.1-gcc42.patch11
-rw-r--r--sys-auth/pam_chroot/files/pam_chroot-0.9.1-makefile.patch21
3 files changed, 5 insertions, 33 deletions
diff --git a/sys-auth/pam_chroot/ChangeLog b/sys-auth/pam_chroot/ChangeLog
index c6ecbaad1cee..88a7172b3e3c 100644
--- a/sys-auth/pam_chroot/ChangeLog
+++ b/sys-auth/pam_chroot/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-auth/pam_chroot
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_chroot/ChangeLog,v 1.13 2011/05/16 09:09:19 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_chroot/ChangeLog,v 1.14 2011/05/16 09:15:34 flameeyes Exp $
+
+ 16 May 2011; Diego E. Pettenò <flameeyes@gentoo.org>
+ -files/pam_chroot-0.9.1-gcc42.patch, -files/pam_chroot-0.9.1-makefile.patch:
+ Remove unused files.
16 May 2011; Diego E. Pettenò <flameeyes@gentoo.org>
-pam_chroot-0.9.1.ebuild, pam_chroot-0.9.2.ebuild:
diff --git a/sys-auth/pam_chroot/files/pam_chroot-0.9.1-gcc42.patch b/sys-auth/pam_chroot/files/pam_chroot-0.9.1-gcc42.patch
deleted file mode 100644
index f8bf6f39f3a1..000000000000
--- a/sys-auth/pam_chroot/files/pam_chroot-0.9.1-gcc42.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- pam_chroot-0.9.1/pam_chroot.c.orig 2007-07-24 23:04:09.000000000 +0300
-+++ pam_chroot-0.9.1/pam_chroot.c 2007-07-24 23:00:52.000000000 +0300
-@@ -291,7 +291,7 @@
- if(NULL == grp) {
- _pam_log(LOG_DEBUG, "%s: no grnam for gid %d", opts->module, gids[i]);
- snprintf(scratch, SCRATCH, "%d", gids[i]);
-- groups[i] = x_strdup(scratch);
-+ groups[i] = (scratch[0]) ? strdup(scratch):NULL;
- } else {
- groups[i] = x_strdup(grp->gr_name);
- }
diff --git a/sys-auth/pam_chroot/files/pam_chroot-0.9.1-makefile.patch b/sys-auth/pam_chroot/files/pam_chroot-0.9.1-makefile.patch
deleted file mode 100644
index 7f9d194e3243..000000000000
--- a/sys-auth/pam_chroot/files/pam_chroot-0.9.1-makefile.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- Makefile.orig 2004-05-05 03:07:47.000000000 +0300
-+++ Makefile 2007-07-12 22:57:23.000000000 +0300
-@@ -1,16 +1,15 @@
- # $Id: pam_chroot-0.9.1-makefile.patch,v 1.1 2007/07/12 20:38:39 hawking Exp $
-
- CC=gcc
--CFLAGS=-fPIC -O2 -Wall -Werror -pedantic
-+CFLAGS:=-fPIC -Wall -Werror -pedantic $(CFLAGS)
- CPPFLAGS=-I.
--LDFLAGS=-x --shared -lpam
-
- OUT=pam_chroot.so
-
- all: $(OUT)
-
- %.so: %.o
-- ld $(LDFLAGS) -o $@ $<
-+ $(LD) -x --shared $(LDFLAGS) -o $@ $< -lpam
-
- clean:
- rm -f *.o $(OUT)