summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-07-21 21:11:54 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-07-21 21:11:54 +0000
commit33ebb5cbda5e63b2d8540fe64125bb697ab9c87f (patch)
tree9d5dc273068fea119a4d6d064f1d1c450a76088c /dev-util
parentRemove old. (diff)
downloadgentoo-2-33ebb5cbda5e63b2d8540fe64125bb697ab9c87f.tar.gz
gentoo-2-33ebb5cbda5e63b2d8540fe64125bb697ab9c87f.tar.bz2
gentoo-2-33ebb5cbda5e63b2d8540fe64125bb697ab9c87f.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/mingw-runtime/ChangeLog5
-rw-r--r--dev-util/mingw-runtime/mingw-runtime-3.16.ebuild79
2 files changed, 4 insertions, 80 deletions
diff --git a/dev-util/mingw-runtime/ChangeLog b/dev-util/mingw-runtime/ChangeLog
index 8e447b88069f..989ecf8bb45c 100644
--- a/dev-util/mingw-runtime/ChangeLog
+++ b/dev-util/mingw-runtime/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/mingw-runtime
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/mingw-runtime/ChangeLog,v 1.30 2015/02/27 08:10:52 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/mingw-runtime/ChangeLog,v 1.31 2015/07/21 21:11:54 mrueg Exp $
+
+ 21 Jul 2015; Manuel Rüger <mrueg@gentoo.org> -mingw-runtime-3.16.ebuild:
+ Remove old.
27 Feb 2015; Mike Frysinger <vapier@gentoo.org> mingw-runtime-3.16.ebuild,
mingw-runtime-3.18.ebuild, mingw-runtime-3.20.2.ebuild,
diff --git a/dev-util/mingw-runtime/mingw-runtime-3.16.ebuild b/dev-util/mingw-runtime/mingw-runtime-3.16.ebuild
deleted file mode 100644
index 8a57ee77ec74..000000000000
--- a/dev-util/mingw-runtime/mingw-runtime-3.16.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/mingw-runtime/mingw-runtime-3.16.ebuild,v 1.3 2015/02/27 08:10:52 vapier Exp $
-
-# This version does not work as the configure script expects the installed
-# cross-compiler to be able to link binaries ... except we haven't provided
-# any of the crt objects yet so it is impossible to link binaries.
-# Older mingw-runtime packages hacked around the issue, but this version seems
-# to have dropped said hack thus breaking the package.
-
-export CBUILD=${CBUILD:-${CHOST}}
-export CTARGET=${CTARGET:-${CHOST}}
-if [[ ${CTARGET} == ${CHOST} ]] ; then
- if [[ ${CATEGORY} == cross-* ]] ; then
- export CTARGET=${CATEGORY#cross-}
- fi
-fi
-
-inherit eutils flag-o-matic
-
-MY_P="mingwrt-${PV}-mingw32"
-DESCRIPTION="Free Win32 runtime and import library definitions"
-HOMEPAGE="http://www.mingw.org/"
-SRC_URI="mirror://sourceforge/mingw/${MY_P}-src.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc x86"
-IUSE="crosscompile_opts_headers-only"
-RESTRICT="strip"
-
-S=${WORKDIR}/${MY_P}
-
-is_crosscompile() {
- [[ ${CHOST} != ${CTARGET} ]]
-}
-just_headers() {
- use crosscompile_opts_headers-only && [[ ${CHOST} != ${CTARGET} ]]
-}
-
-pkg_setup() {
- if [[ ${CBUILD} == ${CHOST} ]] && [[ ${CHOST} == ${CTARGET} ]] ; then
- die "Invalid configuration"
- fi
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i \
- -e "/W32API_INCLUDE/s:=.*:='-I /usr/${CTARGET}/usr/include':" \
- $(find -name configure) || die
- epatch "${FILESDIR}"/${PN}-3.12-DESTDIR.patch
-}
-
-src_compile() {
- just_headers && return 0
-
- CHOST=${CTARGET} strip-unsupported-flags
- econf --host=${CTARGET} || die
- emake || die
-}
-
-src_install() {
- if just_headers ; then
- insinto /usr/${CTARGET}/usr/include
- doins -r include/* || die
- else
- local insdir
- is_crosscompile \
- && insdir="${D}/usr/${CTARGET}" \
- || insdir="${D}"
- emake install DESTDIR="${insdir}" || die
- env -uRESTRICT CHOST=${CTARGET} prepallstrip
- rm -rf "${insdir}"/usr/doc
- dodoc CONTRIBUTORS ChangeLog README TODO readme.txt
- fi
- is_crosscompile && dosym usr /usr/${CTARGET}/mingw
-}