diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-01-01 07:00:34 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-01-01 07:00:34 +0000 |
commit | 7e4c1d709bd6b1acab64d7eaeed7a40be57ab369 (patch) | |
tree | ac7955cce40212f2f49dcab3530e6ce185660161 /sys-devel/patch | |
parent | remove excessive patch mask (diff) | |
download | historical-7e4c1d709bd6b1acab64d7eaeed7a40be57ab369.tar.gz historical-7e4c1d709bd6b1acab64d7eaeed7a40be57ab369.tar.bz2 historical-7e4c1d709bd6b1acab64d7eaeed7a40be57ab369.zip |
old
Diffstat (limited to 'sys-devel/patch')
-rw-r--r-- | sys-devel/patch/patch-2.6.ebuild | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/sys-devel/patch/patch-2.6.ebuild b/sys-devel/patch/patch-2.6.ebuild deleted file mode 100644 index 1dd6e8d7d277..000000000000 --- a/sys-devel/patch/patch-2.6.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/patch-2.6.ebuild,v 1.1 2009/11/14 15:33:39 vapier Exp $ - -inherit flag-o-matic - -DESCRIPTION="Utility to apply diffs to files" -HOMEPAGE="http://www.gnu.org/software/patch/patch.html" -SRC_URI="mirror://gnu/patch/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" -IUSE="static" - -src_compile() { - use static && append-ldflags -static - - local myconf="" - [[ ${USERLAND} != "GNU" ]] && myconf="--program-prefix=g" - econf ${myconf} || die - - emake || die "emake failed" -} - -src_install() { - emake install DESTDIR="${D}" || die - dodoc AUTHORS ChangeLog NEWS README -} |