diff options
author | 2001-02-07 15:55:15 +0000 | |
---|---|---|
committer | 2001-02-07 15:55:15 +0000 | |
commit | 20679156a1fa704fec1fab5a9c8693166c701bca (patch) | |
tree | a62659954140718f26c91857fb2cd8e2ff4c5217 /sys-apps/debianutils | |
parent | *** empty log message *** (diff) | |
download | historical-20679156a1fa704fec1fab5a9c8693166c701bca.tar.gz historical-20679156a1fa704fec1fab5a9c8693166c701bca.tar.bz2 historical-20679156a1fa704fec1fab5a9c8693166c701bca.zip |
Maintainence and FHS 2.1 fixes for RC4
Diffstat (limited to 'sys-apps/debianutils')
-rw-r--r-- | sys-apps/debianutils/debianutils-1.13.3-r2.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/sys-apps/debianutils/debianutils-1.13.3-r2.ebuild b/sys-apps/debianutils/debianutils-1.13.3-r2.ebuild new file mode 100644 index 000000000000..1a22e5353ec5 --- /dev/null +++ b/sys-apps/debianutils/debianutils-1.13.3-r2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Daniel Robbins <drobbins@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/sys-apps/debianutils/debianutils-1.13.3-r2.ebuild,v 1.1 2001/02/07 15:51:27 achim Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="A selection of tools from Debian" +SRC_URI="ftp://ftp.debian.org/debian/dists/potato/main/source/base/debianutils_${PV}.tar.gz" + +DEPEND="virtual/glibc" + +src_unpack() { + + unpack ${A} + cd ${S} + cp Makefile Makefile.orig + sed -e "s/-O2 -g/${CFLAGS}/" Makefile.orig > Makefile +} + +src_compile() { + + try pmake +} + + +src_install() { + + into / + dobin run-parts readlink tempfile mktemp + insopts -m755 + exeinto /usr/sbin + doexe savelog + + doman mktemp.1 readlink.1 tempfile.1 run-parts.8 savelog.8 + + cd debian + dodoc changelog control copyright + +} + + + |