summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-01-01 07:00:34 +0000
committerMike Frysinger <vapier@gentoo.org>2010-01-01 07:00:34 +0000
commit9ef057e7579cfbb1c227729226ae38efb2a8dc2c (patch)
treef3a6eca448dd45e77332678f3844a753638c425c /sys-devel
parentremove excessive patch mask (diff)
downloadgentoo-2-9ef057e7579cfbb1c227729226ae38efb2a8dc2c.tar.gz
gentoo-2-9ef057e7579cfbb1c227729226ae38efb2a8dc2c.tar.bz2
gentoo-2-9ef057e7579cfbb1c227729226ae38efb2a8dc2c.zip
old
Diffstat (limited to 'sys-devel')
-rw-r--r--sys-devel/patch/patch-2.6.ebuild29
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
-}