From d8697322a4154277d8c4b70db342e447d046d35b Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 16 Mar 2006 00:03:31 +0000 Subject: [PATCH] old Package-Manager: portage-2.1_pre6-r3 --- sys-devel/bc/bc-1.06-r5.ebuild | 68 ------------------- sys-devel/bc/files/digest-bc-1.06-r5 | 1 - sys-devel/bin86/bin86-0.16.16.ebuild | 39 ----------- sys-devel/bin86/files/digest-bin86-0.16.16 | 1 - sys-devel/dev86/dev86-0.16.17-r1.ebuild | 46 ------------- sys-devel/dev86/dev86-0.16.17.ebuild | 38 ----------- sys-devel/dev86/files/digest-dev86-0.16.17 | 1 - sys-devel/dev86/files/digest-dev86-0.16.17-r1 | 1 - 8 files changed, 195 deletions(-) delete mode 100644 sys-devel/bc/bc-1.06-r5.ebuild delete mode 100644 sys-devel/bc/files/digest-bc-1.06-r5 delete mode 100644 sys-devel/bin86/bin86-0.16.16.ebuild delete mode 100644 sys-devel/bin86/files/digest-bin86-0.16.16 delete mode 100644 sys-devel/dev86/dev86-0.16.17-r1.ebuild delete mode 100644 sys-devel/dev86/dev86-0.16.17.ebuild delete mode 100644 sys-devel/dev86/files/digest-dev86-0.16.17 delete mode 100644 sys-devel/dev86/files/digest-dev86-0.16.17-r1 diff --git a/sys-devel/bc/bc-1.06-r5.ebuild b/sys-devel/bc/bc-1.06-r5.ebuild deleted file mode 100644 index 1ce76ec40d2a..000000000000 --- a/sys-devel/bc/bc-1.06-r5.ebuild +++ /dev/null @@ -1,68 +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/bc/bc-1.06-r5.ebuild,v 1.21 2005/03/09 00:31:16 vapier Exp $ - -inherit eutils flag-o-matic toolchain-funcs - -DESCRIPTION="Handy console-based calculator utility" -HOMEPAGE="http://www.gnu.org/software/bc/bc.html" -SRC_URI="mirror://gnu/bc/${P}.tar.gz" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86" -IUSE="readline static" - -RDEPEND="readline? ( >=sys-libs/readline-4.1 - >=sys-libs/ncurses-5.2 )" -DEPEND="${RDEPEND} - sys-devel/flex" - -src_unpack() { - unpack ${A} - cd ${S} - - epatch ${FILESDIR}/bc-1.06-info-fix.diff - epatch ${FILESDIR}/bc-1.06-readline42.diff - sed -i -e '/^AR =/s:.*::' lib/Makefile.in - - # Command line arguments for flex changed from the old - # 2.5.4 to 2.5.22, so fix configure if we are using the - # new flex. Note that flex-2.5.4 prints 'flex version 2.5.4' - # and flex-2.5.22 prints 'flex 2.5.22', bug #10546. - # (23 Oct 2002) - local flmajor="`flex --version | cut -d. -f1`" - local flminor="`flex --version | cut -d. -f2`" - local flmicro="`flex --version | cut -d. -f3`" - if [ "${flmajor/flex* }" -ge 2 -a \ - "${flminor/flex* }" -ge 5 -a \ - "${flmicro/flex* }" -ge 22 ] - then - sed -i -e 's:flex -I8:flex -I:g' \ - configure - fi -} - -src_compile() { - case ${ARCH} in - ppc) filter-flags -O2;; - x86) replace-flags -Os -O2;; - amd64) replace-flags -O? -O0;; - esac - tc-export CC AR RANLIB - - local myconf="" - use static && append-ldflags -static - use readline && myconf="--with-readline" - econf ${myconf} || die - emake || die -} - -src_install() { - into /usr - dobin bc/bc dc/dc || die - - doinfo doc/*.info - doman doc/*.1 - dodoc AUTHORS FAQ NEWS README ChangeLog -} diff --git a/sys-devel/bc/files/digest-bc-1.06-r5 b/sys-devel/bc/files/digest-bc-1.06-r5 deleted file mode 100644 index e470cb55f0e4..000000000000 --- a/sys-devel/bc/files/digest-bc-1.06-r5 +++ /dev/null @@ -1 +0,0 @@ -MD5 d44b5dddebd8a7a7309aea6c36fda117 bc-1.06.tar.gz 278926 diff --git a/sys-devel/bin86/bin86-0.16.16.ebuild b/sys-devel/bin86/bin86-0.16.16.ebuild deleted file mode 100644 index 3d23b9301f00..000000000000 --- a/sys-devel/bin86/bin86-0.16.16.ebuild +++ /dev/null @@ -1,39 +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/bin86/bin86-0.16.16.ebuild,v 1.3 2005/01/27 04:00:16 vapier Exp $ - -inherit toolchain-funcs - -DESCRIPTION="Assembler and loader used to create kernel bootsector" -HOMEPAGE="http://www.cix.co.uk/~mayday/" -SRC_URI="http://www.cix.co.uk/~mayday/dev86/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="-* x86" -IUSE="" - -RDEPEND="virtual/libc" -DEPEND="${RDEPEND} - sys-apps/sed" - -src_unpack() { - unpack ${A} - cd ${S} - sed -i 's:/man/man1:/share/man/man1:' Makefile || die "sed" -} - -src_compile() { - emake \ - PREFIX="/usr" \ - CC="$(tc-getCC)" \ - CFLAGS="${CFLAGS} -D_POSIX_SOURCE" \ - LDFLAGS="${LDFLAGS}" \ - || die -} - -src_install() { - dodir /usr/bin /usr/share/man/man1 - make install PREFIX="${D}/usr" || die "install" - dodoc README* ChangeLog -} diff --git a/sys-devel/bin86/files/digest-bin86-0.16.16 b/sys-devel/bin86/files/digest-bin86-0.16.16 deleted file mode 100644 index 57811201d605..000000000000 --- a/sys-devel/bin86/files/digest-bin86-0.16.16 +++ /dev/null @@ -1 +0,0 @@ -MD5 48c56be9792b26702805cb59471c99e5 bin86-0.16.16.tar.gz 147617 diff --git a/sys-devel/dev86/dev86-0.16.17-r1.ebuild b/sys-devel/dev86/dev86-0.16.17-r1.ebuild deleted file mode 100644 index c87e3d12d9bd..000000000000 --- a/sys-devel/dev86/dev86-0.16.17-r1.ebuild +++ /dev/null @@ -1,46 +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/dev86/dev86-0.16.17-r1.ebuild,v 1.1 2005/11/10 00:55:15 robbat2 Exp $ - -inherit eutils - -DESCRIPTION="Bruce's C compiler - Simple C compiler to generate 8086 code" -HOMEPAGE="http://www.cix.co.uk/~mayday" -SRC_URI="http://www.cix.co.uk/~mayday/dev86/Dev86src-${PV}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86 ~amd64" -IUSE="" - -DEPEND="virtual/libc - dev-util/gperf" - -src_unpack() { - unpack "${A}" - # elksemu doesn't compile under amd64 - if use amd64; then - einfo "Not compiling elksemu on amd64" - sed -i.orig \ - -e 's,alt-libs elksemu,alt-libs,' \ - -e 's,install-lib install-emu,install-lib,' \ - ${S}/makefile.in - fi -} - -src_compile() { - emake -j1 DIST="${D}" || die - - export PATH=${S}/bin:${PATH} - cd bin - ln -s ncc bcc - cd .. - cd bootblocks - ln -s ../bcc/version.h . - emake DIST="${D}" || die -} - -src_install() { - make install-all DIST="${D}" || die - install -m 755 bootblocks/makeboot "${D}/usr/bin" -} diff --git a/sys-devel/dev86/dev86-0.16.17.ebuild b/sys-devel/dev86/dev86-0.16.17.ebuild deleted file mode 100644 index f89a8e5f3631..000000000000 --- a/sys-devel/dev86/dev86-0.16.17.ebuild +++ /dev/null @@ -1,38 +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/dev86/dev86-0.16.17.ebuild,v 1.1 2005/10/26 15:23:38 chrb Exp $ - -inherit eutils - -DESCRIPTION="Bruce's C compiler - Simple C compiler to generate 8086 code" -HOMEPAGE="http://www.cix.co.uk/~mayday" -SRC_URI="http://www.cix.co.uk/~mayday/dev86/Dev86src-${PV}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86" -IUSE="" - -DEPEND="virtual/libc - dev-util/gperf" - -src_unpack() { - unpack "${A}" -} - -src_compile() { - emake -j1 DIST="${D}" || die - - export PATH=${S}/bin:${PATH} - cd bin - ln -s ncc bcc - cd .. - cd bootblocks - ln -s ../bcc/version.h . - emake DIST="${D}" || die -} - -src_install() { - make install-all DIST="${D}" || die - install -m 755 bootblocks/makeboot "${D}/usr/bin" -} diff --git a/sys-devel/dev86/files/digest-dev86-0.16.17 b/sys-devel/dev86/files/digest-dev86-0.16.17 deleted file mode 100644 index 2b1e793206ba..000000000000 --- a/sys-devel/dev86/files/digest-dev86-0.16.17 +++ /dev/null @@ -1 +0,0 @@ -MD5 e7bbfdbe61c2fb964994a087e29b0087 Dev86src-0.16.17.tar.gz 703028 diff --git a/sys-devel/dev86/files/digest-dev86-0.16.17-r1 b/sys-devel/dev86/files/digest-dev86-0.16.17-r1 deleted file mode 100644 index 2b1e793206ba..000000000000 --- a/sys-devel/dev86/files/digest-dev86-0.16.17-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 e7bbfdbe61c2fb964994a087e29b0087 Dev86src-0.16.17.tar.gz 703028 -- 2.26.2