From fea9cd058e34497fced3b7a6289c06fa44bf6f2a Mon Sep 17 00:00:00 2001 From: Seemant Kulleen Date: Wed, 10 Dec 2003 21:18:06 +0000 Subject: mkboot fix --- sys-apps/debianutils/debianutils-1.16.7-r4.ebuild | 68 +++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 sys-apps/debianutils/debianutils-1.16.7-r4.ebuild (limited to 'sys-apps/debianutils/debianutils-1.16.7-r4.ebuild') diff --git a/sys-apps/debianutils/debianutils-1.16.7-r4.ebuild b/sys-apps/debianutils/debianutils-1.16.7-r4.ebuild new file mode 100644 index 000000000000..0a9d5710eabb --- /dev/null +++ b/sys-apps/debianutils/debianutils-1.16.7-r4.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/debianutils/debianutils-1.16.7-r4.ebuild,v 1.1 2003/12/10 21:18:04 seemant Exp $ + +IUSE="static build" + +S="${WORKDIR}/${P}" +DESCRIPTION="A selection of tools from Debian" +HOMEPAGE="http://packages.debian.org/unstable/base/debianutils.html" +SRC_URI="mirror://gentoo/${PN}_${PV}.tar.gz" + +SLOT="0" +LICENSE="GPL-2 BSD" +KEYWORDS="x86 amd64 ppc sparc alpha mips hppa arm ia64" + +DEPEND="virtual/glibc" + +RDEPEND="app-arch/bzip2 + sys-apps/coreutils" + +src_unpack() { + unpack ${A} + + cd ${S} + + # Make installkernel and mkboot more Gentoo friendly + # (25 Sep 2002) + epatch ${FILESDIR}/${P}-gentoo.patch + + # Patch savelog to use bzip2 compression instead of gzip + epatch ${FILESDIR}/${PN}-compress.patch + + # Get it to work with gcc-3.3 + # (18 May 2003) + epatch ${FILESDIR}/${P}-gcc33.patch +} + +src_compile() { + if use static + then + pmake LDFLAGS=-static || die + else + pmake || die + fi +} + +src_install() { + into / + dobin tempfile mktemp + + if [ -z "`use build`" ] + then + dobin run-parts + insopts -m755 + exeinto /usr/sbin + doexe savelog + dosbin installkernel + into /usr + dosbin mkboot + + into /usr + doman mktemp.1 tempfile.1 run-parts.8 savelog.8 \ + installkernel.8 mkboot.8 + + cd debian + dodoc changelog control copyright + fi +} -- cgit v1.2.3-65-gdbad