diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-02-07 16:05:19 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-02-07 16:05:19 +0000 |
commit | 8c2f9b5d58d2c8ba17ecd94571dc41b82919228f (patch) | |
tree | e3f2ab2acadd83ad2269d388593e02ee4a4107e3 /sys-devel/bin86 | |
parent | Maintainence and FHS 2.1 fixes for RC4 (diff) | |
download | gentoo-2-8c2f9b5d58d2c8ba17ecd94571dc41b82919228f.tar.gz gentoo-2-8c2f9b5d58d2c8ba17ecd94571dc41b82919228f.tar.bz2 gentoo-2-8c2f9b5d58d2c8ba17ecd94571dc41b82919228f.zip |
Maintainence and FHS 2.1 fixes for RC4
Diffstat (limited to 'sys-devel/bin86')
-rw-r--r-- | sys-devel/bin86/bin86-0.15.4-r1.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/sys-devel/bin86/bin86-0.15.4-r1.ebuild b/sys-devel/bin86/bin86-0.15.4-r1.ebuild new file mode 100644 index 000000000000..b6f0f326b40c --- /dev/null +++ b/sys-devel/bin86/bin86-0.15.4-r1.ebuild @@ -0,0 +1,41 @@ +# 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-devel/bin86/bin86-0.15.4-r1.ebuild,v 1.1 2001/02/07 16:05:19 achim Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/bin86 +DESCRIPTION="Assembler and loader used to create kernel bootsector" +SRC_URI="http://www.cix.co.uk/~mayday/${A}" +HOMEPAGE="http://www.cix.co.uk/~mayday/" +DEPEND="virtual/glibc" + +src_unpack() { + + unpack ${A} + cd ${S} + cp Makefile Makefile.orig + sed -e "s/CFLAGS=-O2/CFLAGS=${CFLAGS}/" \ + -e "s:INSTALL_OPTS=-m 755 -s:INSTALL_OPTS=-m 755:" \ + Makefile.orig > Makefile + +} + +src_compile() { + + try make ${MAKEOPTS} + +} + +src_install() { + + dodir /usr/bin + dodir /usr/share/man/man1 + try make PREFIX=${D}/usr MANDIR=${D}/usr/share/man/man1 install + + dodoc README README-0.4 ChangeLog + docinto as + dodoc as/COPYING as/TODO +} + + |