Update of /cvsroot/darwinfiles/packagetree/sys-apps/debianutils
In directory usw-pr-cvs1:/tmp/cvs-serv548
Added Files:
ChangeLog debianutils-1.16.ebuild
Log Message:
Importing Debianfiles
--- NEW FILE: ChangeLog ---
# ChangeLog for sys-apps/debianutils
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
# $Header: /cvsroot/darwinfiles/packagetree/sys-apps/debianutils/ChangeLog,v 1.1 2002/09/08 03:04:38 jimmacr Exp $
*debianutils-1.13.3-r3.ebuild (14 July 2002)
14 Jul 2002; phoen][x <ph...@ge...> debianutils-1.13.3-r3.ebuild :
Added KEYWORDS, SLOT.
*debianutils-1.16 (23 Mar 2002)
14 Jul 2002; phoen][x <ph...@ge...> debianutils-1.16.ebuild :
Added KEYWORDS, SLOT.
23 Mar 2002; Seemant Kulleen <se...@ge...> debianutils-1.16.ebuild :
Version update. With it came a change in the SRC_URI as well. Submitted by
Jim Nutt.
*debianutils-1.13.3-r4 (1 Feb 2002)
14 Jul 2002; phoen][x <ph...@ge...> debianutils-1.13.3-r4.ebuild :
Added KEYWORDS, SLOT.
1 Feb 2002; G.Bevin <gb...@ge...> ChangeLog :
Added initial ChangeLog which should be updated whenever the package is
updated in any way. This changelog is targetted to users. This means that the
comments should well explained and written in clean English. The details about
writing correct changelogs are explained in the skel.ChangeLog file which you
can find in the root directory of the portage repository.
--- NEW FILE: debianutils-1.16.ebuild ---
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /cvsroot/darwinfiles/packagetree/sys-apps/debianutils/debianutils-1.16.ebuild,v 1.1 2002/09/08 03:04:38 jimmacr Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A selection of tools from Debian"
SRC_URI="http://ftp.debian.org/debian/pool/main/d/${PN}/${PN}_${PV}.tar.gz"
HOMEPAGE="http://packages.debian.org/unstable/base/debianutils.html"
KEYWORDS="x86 ppc sparc sparc64"
SLOT="0"
LICENSE="GPL-2 BSD SMAIL"
DEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${S}
patch -p0 < ${FILESDIR}/${P}-Makefile-gentoo.diff
}
src_compile() {
if [ -z "`use static`" ]
then
pmake || die
else
pmake LDFLAGS=-static || die
fi
}
src_install() {
into /
dobin readlink tempfile mktemp
if [ -z "`use build`" ]
then
dobin run-parts
insopts -m755
exeinto /usr/sbin
doexe savelog
if [ -z "`use bootcd`" ]
then
into /usr
doman mktemp.1 readlink.1 tempfile.1 run-parts.8 savelog.8
cd debian
dodoc changelog control copyright
fi
fi
}
|