diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-08-15 17:37:50 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-08-15 17:37:50 +0000 |
commit | 3cd006c5281d462b00a81d1b64e5daea30b0581b (patch) | |
tree | ca22a57247d7dd3874e660ae051938c1d96c9a36 /sys-devel | |
parent | Remove jruby support until PPC sorts out its deptree. (diff) | |
download | gentoo-2-3cd006c5281d462b00a81d1b64e5daea30b0581b.tar.gz gentoo-2-3cd006c5281d462b00a81d1b64e5daea30b0581b.tar.bz2 gentoo-2-3cd006c5281d462b00a81d1b64e5daea30b0581b.zip |
old
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/m4/m4-1.4.13.ebuild | 42 | ||||
-rw-r--r-- | sys-devel/m4/m4-1.4.14.ebuild | 50 |
2 files changed, 0 insertions, 92 deletions
diff --git a/sys-devel/m4/m4-1.4.13.ebuild b/sys-devel/m4/m4-1.4.13.ebuild deleted file mode 100644 index 3ffc4174b5c8..000000000000 --- a/sys-devel/m4/m4-1.4.13.ebuild +++ /dev/null @@ -1,42 +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/m4/m4-1.4.13.ebuild,v 1.2 2009/09/08 17:49:43 vapier Exp $ - -DESCRIPTION="GNU macro processor" -HOMEPAGE="http://www.gnu.org/software/m4/m4.html" -SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" -IUSE="examples" - -# remember: cannot dep on autoconf since it needs us -DEPEND="|| ( app-arch/xz-utils app-arch/lzma-utils )" -RDEPEND="" - -src_compile() { - local myconf="" - [[ ${USERLAND} != "GNU" ]] && myconf="--program-prefix=g" - econf \ - --enable-changeword \ - ${myconf} \ - || die - emake || die -} - -src_test() { - [[ -d /none ]] && die "m4 tests will fail with /none/" #244396 - emake check || die -} - -src_install() { - emake install DESTDIR="${D}" || die - dodoc BACKLOG ChangeLog NEWS README* THANKS TODO - if use examples ; then - docinto examples - dodoc examples/* - rm -f "${D}"/usr/share/doc/${PF}/examples/Makefile* - fi - rm -f "${D}"/usr/lib/charset.alias #172864 -} diff --git a/sys-devel/m4/m4-1.4.14.ebuild b/sys-devel/m4/m4-1.4.14.ebuild deleted file mode 100644 index 32e84292e4fc..000000000000 --- a/sys-devel/m4/m4-1.4.14.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/m4/m4-1.4.14.ebuild,v 1.3 2010/03/28 10:33:47 the_paya Exp $ - -inherit eutils - -DESCRIPTION="GNU macro processor" -HOMEPAGE="http://www.gnu.org/software/m4/m4.html" -SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" -IUSE="examples" - -# remember: cannot dep on autoconf since it needs us -DEPEND="|| ( app-arch/xz-utils app-arch/lzma-utils )" -RDEPEND="" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${PN}-1.4.14-gnulib_spawn.patch # 310335 -} - -src_compile() { - local myconf="" - [[ ${USERLAND} != "GNU" ]] && myconf="--program-prefix=g" - econf \ - --enable-changeword \ - ${myconf} \ - || die - emake || die -} - -src_test() { - [[ -d /none ]] && die "m4 tests will fail with /none/" #244396 - emake check || die -} - -src_install() { - emake install DESTDIR="${D}" || die - dodoc BACKLOG ChangeLog NEWS README* THANKS TODO - if use examples ; then - docinto examples - dodoc examples/* - rm -f "${D}"/usr/share/doc/${PF}/examples/Makefile* - fi - rm -f "${D}"/usr/lib/charset.alias #172864 -} |