diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-01-31 03:01:55 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-01-31 03:01:55 +0000 |
commit | bba4d4336c96da244f5735ed39dcf424215f7d22 (patch) | |
tree | dfed3444f239ff765c1f92c53edccb92604a07c1 | |
parent | Include HTB_GCC_VER in the version string. (diff) | |
download | gentoo-2-bba4d4336c96da244f5735ed39dcf424215f7d22.tar.gz gentoo-2-bba4d4336c96da244f5735ed39dcf424215f7d22.tar.bz2 gentoo-2-bba4d4336c96da244f5735ed39dcf424215f7d22.zip |
Version bump.
(Portage version: 2.0.51-r15)
-rw-r--r-- | sys-devel/bin86/ChangeLog | 9 | ||||
-rw-r--r-- | sys-devel/bin86/Manifest | 3 | ||||
-rw-r--r-- | sys-devel/bin86/bin86-0.16.0.ebuild | 4 | ||||
-rw-r--r-- | sys-devel/bin86/bin86-0.16.17.ebuild | 42 | ||||
-rw-r--r-- | sys-devel/bin86/files/digest-bin86-0.16.17 | 1 |
5 files changed, 54 insertions, 5 deletions
diff --git a/sys-devel/bin86/ChangeLog b/sys-devel/bin86/ChangeLog index ec00399e8d52..0022ef0259bb 100644 --- a/sys-devel/bin86/ChangeLog +++ b/sys-devel/bin86/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-devel/bin86 -# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/bin86/ChangeLog,v 1.13 2004/11/30 02:35:41 vapier Exp $ +# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/bin86/ChangeLog,v 1.14 2005/01/31 03:01:55 vapier Exp $ + +*bin86-0.16.17 (30 Jan 2005) + + 30 Jan 2005; Mike Frysinger <vapier@gentoo.org> +bin86-0.16.17.ebuild: + Version bump. *bin86-0.16.16 (29 Nov 2004) diff --git a/sys-devel/bin86/Manifest b/sys-devel/bin86/Manifest index 829d2fb7d625..bb4bd8351b77 100644 --- a/sys-devel/bin86/Manifest +++ b/sys-devel/bin86/Manifest @@ -1,6 +1,7 @@ MD5 f66b884dc84ecec1fd4ea4b111e3a27d ChangeLog 2098 -MD5 1829f973a2d448647261c6e196aa2871 bin86-0.16.16.ebuild 890 MD5 8e0508feb90979c46f166f82c4eff84a bin86-0.16.0.ebuild 726 +MD5 8b6ab59ceb494b4394c73642ef135d27 bin86-0.16.17.ebuild 892 MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164 MD5 9737e2b2121543298c07b50ccd22abbc files/digest-bin86-0.16.16 65 +MD5 29c73c3800c42a8ea661a62f5c489a30 files/digest-bin86-0.16.17 65 MD5 7d22d60b602b4280bac1e01f3d92a31a files/digest-bin86-0.16.0 65 diff --git a/sys-devel/bin86/bin86-0.16.0.ebuild b/sys-devel/bin86/bin86-0.16.0.ebuild index 3e89331fb4b1..641823058a31 100644 --- a/sys-devel/bin86/bin86-0.16.0.ebuild +++ b/sys-devel/bin86/bin86-0.16.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# 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.0.ebuild,v 1.10 2004/07/15 03:08:36 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/bin86/bin86-0.16.0.ebuild,v 1.11 2005/01/31 03:01:55 vapier Exp $ DESCRIPTION="Assembler and loader used to create kernel bootsector" SRC_URI="http://www.cix.co.uk/~mayday/${PN/bin/dev}/${P}.tar.bz2" diff --git a/sys-devel/bin86/bin86-0.16.17.ebuild b/sys-devel/bin86/bin86-0.16.17.ebuild new file mode 100644 index 000000000000..4700fb7b1964 --- /dev/null +++ b/sys-devel/bin86/bin86-0.16.17.ebuild @@ -0,0 +1,42 @@ +# 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.17.ebuild,v 1.1 2005/01/31 03:01:55 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 \ + -e 's:/man/man1:/share/man/man1:' \ + -e '/^INSTALL_OPTS/s:-s::' \ + 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.17 b/sys-devel/bin86/files/digest-bin86-0.16.17 new file mode 100644 index 000000000000..76d19ef10e6f --- /dev/null +++ b/sys-devel/bin86/files/digest-bin86-0.16.17 @@ -0,0 +1 @@ +MD5 c9e8d72dd2e7457b52d0e3164fc199a1 bin86-0.16.17.tar.gz 152400 |