diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-08-10 09:24:31 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-08-10 09:24:31 +0000 |
commit | ca5b17b78f9a41ed01221422c096a34b3f26cbee (patch) | |
tree | ffe486b8a75213afe8038b0c3761f5860f6c67fa /sys-devel | |
parent | Fix gcc-4.4 issues, Bug #277409. (diff) | |
download | gentoo-2-ca5b17b78f9a41ed01221422c096a34b3f26cbee.tar.gz gentoo-2-ca5b17b78f9a41ed01221422c096a34b3f26cbee.tar.bz2 gentoo-2-ca5b17b78f9a41ed01221422c096a34b3f26cbee.zip |
remove old
(Portage version: 2.2_rc37/cvs/Linux x86_64)
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/pmake/ChangeLog | 9 | ||||
-rw-r--r-- | sys-devel/pmake/files/02_all_mktemp.patch | 21 | ||||
-rw-r--r-- | sys-devel/pmake/files/skipdots.patch | 22 | ||||
-rw-r--r-- | sys-devel/pmake/pmake-1.111.1.ebuild | 77 | ||||
-rw-r--r-- | sys-devel/pmake/pmake-1.45-r4.ebuild | 62 |
5 files changed, 7 insertions, 184 deletions
diff --git a/sys-devel/pmake/ChangeLog b/sys-devel/pmake/ChangeLog index f2e36c0f118f..2b61652f5f19 100644 --- a/sys-devel/pmake/ChangeLog +++ b/sys-devel/pmake/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-devel/pmake -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v 1.35 2008/09/25 08:46:15 aballier Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/ChangeLog,v 1.36 2009/08/10 09:24:31 aballier Exp $ + + 10 Aug 2009; Alexis Ballier <aballier@gentoo.org> + -files/02_all_mktemp.patch, -pmake-1.45-r4.ebuild, -pmake-1.111.1.ebuild, + -files/skipdots.patch: + remove old *pmake-1.111.1-r1 (25 Sep 2008) diff --git a/sys-devel/pmake/files/02_all_mktemp.patch b/sys-devel/pmake/files/02_all_mktemp.patch deleted file mode 100644 index 1e7726a7d6a3..000000000000 --- a/sys-devel/pmake/files/02_all_mktemp.patch +++ /dev/null @@ -1,21 +0,0 @@ ---- pmake-1.45/mkdep.mktemp Fri May 11 14:08:35 2001 -+++ pmake-1.45/mkdep Fri May 11 14:10:03 2001 -@@ -68,17 +68,9 @@ - exit 1 - fi - --DTMP=/tmp/mkdep$$ -+DTMP=`/bin/mktemp -d /tmp/mkdepXXXXXX` - TMP=$DTMP/mkdep - --um=`umask` --umask 022 --if ! mkdir $DTMP ; then -- echo failed to create tmp dir $DTMP -- exit 1 --fi -- --umask $um - trap 'rm -rf $DTMP ; trap 2 ; kill -2 $$' 1 2 3 13 15 - - if [ x$pflag = x ]; then diff --git a/sys-devel/pmake/files/skipdots.patch b/sys-devel/pmake/files/skipdots.patch deleted file mode 100644 index 0bf81a9eeb7e..000000000000 --- a/sys-devel/pmake/files/skipdots.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- pmake-1.45.orig/dir.c 1997-09-28 04:46:39.000000000 -0700 -+++ pmake-1.45/dir.c 2004-03-28 07:03:27.000000000 -0800 -@@ -1170,13 +1170,13 @@ - p->refCount = 1; - Hash_InitTable (&p->files, -1); - -- /* -- * Skip the first two entries -- these will *always* be . and .. -- */ -- (void)readdir(d); -- (void)readdir(d); -- - while ((dp = readdir (d)) != (struct dirent *) NULL) { -+ /* -+ * Skip "." and ".." -+ */ -+ if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, "..")) { -+ continue; -+ } - #if defined(sun) && defined(d_ino) /* d_ino is a sunos4 #define for d_fileno */ - /* - * The sun directory library doesn't check for a 0 inode diff --git a/sys-devel/pmake/pmake-1.111.1.ebuild b/sys-devel/pmake/pmake-1.111.1.ebuild deleted file mode 100644 index 9efe4163b4dc..000000000000 --- a/sys-devel/pmake/pmake-1.111.1.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/pmake-1.111.1.ebuild,v 1.8 2008/02/29 03:23:49 ranger Exp $ - -inherit eutils toolchain-funcs versionator - -MY_P="${PN}-$(get_version_component_range 1-2)" -DEBIAN_SOURCE="${PN}_$(get_version_component_range 1-2).orig.tar.gz" -DEBIAN_PATCH="${PN}_$(replace_version_separator 2 '-').diff.gz" - -DESCRIPTION="BSD build tool to create programs in parallel. Debian's version of NetBSD's make" -HOMEPAGE="http://www.netbsd.org/" -SRC_URI="mirror://debian/pool/main/p/pmake/${DEBIAN_SOURCE} - mirror://debian/pool/main/p/pmake/${DEBIAN_PATCH}" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" -IUSE="" - -RDEPEND="!sys-devel/bmake" -DEPEND="" - -S="${WORKDIR}/${PN}" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${WORKDIR}/${DEBIAN_PATCH/.gz/}" - - # pmake makes the assumption that . and .. are the first two - # entries in a directory, which doesn't always appear to be the - # case on ext3... (05 Apr 2004 agriffis) - epatch "${FILESDIR}/${PN}-1.98-skipdots.patch" - - # Add inttypes.h header on OpenBSD - epatch "${FILESDIR}/${P}-obsd-inttypes.patch" - - # Clean up headers to reduce warnings - sed -i -e 's|^#endif.*|#endif|' *.h */*.h -} - -src_compile() { - # The following CFLAGS are almost directly from Red Hat 8.0 and - # debian/rules, so assume it's okay to void out the __COPYRIGHT - # and __RCSID. I've checked the source and don't see the point, - # but whatever... (07 Feb 2004 agriffis) - CFLAGS="${CFLAGS} -Wall -Wno-unused -D_GNU_SOURCE \ - -DHAVE_STRERROR -DHAVE_STRDUP -DHAVE_SETENV \ - -D__COPYRIGHT\(x\)= -D__RCSID\(x\)= -I. \ - -DMACHINE=\\\"gentoo\\\" -DMACHINE_ARCH=\\\"$(tc-arch-kernel)\\\"" - - make -f Makefile.boot \ - CC="$(tc-getCC)" \ - CFLAGS="${CFLAGS}" \ - || die "make failed" -} - -src_install() { - # Don't install these on BSD, else they conflict - if [[ "${USERLAND}" == "GNU" ]]; then - insinto /usr/share/mk - doins mk/* - fi - - newbin bmake pmake || die "newbin failed" - dobin mkdep || die "dobin failed" - mv make.1 pmake.1 - doman mkdep.1 pmake.1 - dodoc PSD.doc/tutorial.ms - - if [[ "${USERLAND}" == "BSD" ]]; then - dosym pmake /usr/bin/make - dosym pmake.1.gz /usr/share/man/man1/make.1.gz - fi -} diff --git a/sys-devel/pmake/pmake-1.45-r4.ebuild b/sys-devel/pmake/pmake-1.45-r4.ebuild deleted file mode 100644 index aa93cbeda131..000000000000 --- a/sys-devel/pmake/pmake-1.45-r4.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/pmake/pmake-1.45-r4.ebuild,v 1.9 2005/07/07 00:28:02 vapier Exp $ - -inherit eutils - -DESCRIPTION="BSD build tool to create programs in parallel" -HOMEPAGE="http://www.netbsd.org/" -SRC_URI="mirror://gentoo/${PN}_${PV}-11.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="alpha amd64 arm ia64 ~mips ppc sparc x86" -IUSE="" - -RDEPEND="virtual/libc" -DEPEND="${RDEPEND} - >=sys-apps/sed-4" - -src_unpack() { - unpack ${A} && cd ${S} || die - - # We do not want all patches in ${FILESDIR}, as 01_all_groffpatch.patch is - # not longer valid for this version. - epatch ${FILESDIR}/02_all_mktemp.patch - - # pmake makes the assumption that . and .. are the first two - # entries in a directory, which doesn't always appear to be the - # case on ext3... (05 Apr 2004 agriffis) - epatch ${FILESDIR}/skipdots.patch - - # Clean up headers to reduce warnings - sed -i -e 's|^#endif.*|#endif|' *.h */*.h -} - -src_compile() { - local a=$ARCH - [[ $a = x86 ]] && a=i386 - - # The following CFLAGS are almost directly from Red Hat 8.0 and - # debian/rules, so assume it's okay to void out the __COPYRIGHT - # and __RCSID. I've checked the source and don't see the point, - # but whatever... (07 Feb 2004 agriffis) - CFLAGS="${CFLAGS} -Wall -D_GNU_SOURCE \ - -D__COPYRIGHT\(x\)= -D__RCSID\(x\)= -I. \ - -DMACHINE=\\\"gentoo\\\" -DMACHINE_ARCH=\\\"${a}\\\"" - make -f Makefile.boot CFLAGS="${CFLAGS}" -} - -src_install() { - dodir /usr/share/mk - insinto /usr/share/mk - rm -f mk/*~ - doins mk/* - - mv bmake pmake - dobin pmake || die - dobin mkdep - mv make.1 pmake.1 - doman mkdep.1 pmake.1 - dodoc PSD.doc/tutorial.ms -} |