Revert "Revert "sys-freebsd/freebsd-mk-defs: drop EAPI=3 ebuild""

This reverts commit d1b45bd582.

As discussed with Aaron (b-man) and Patrice (monsieurp) on IRC - let's
remove the EAPI 3 ebuild. If someone wants to work on resurrecting
freebsd 9 support, then please submit a new ebuild (preferrably EAPI 7,
or 6).
This commit is contained in:
Matthias Maier
2018-05-18 21:26:25 -05:00
parent 594e6ae80d
commit 5aeaf34fed
2 changed files with 0 additions and 39 deletions

View File

@@ -1,2 +1 @@
DIST freebsd-share-9.1.tar.bz2 6733003 BLAKE2B 12bff34814fc3e893a95480a3ed1a389f426b6c7c7526c572aaf3bf710258feae78f09390dc29ccf563eb700407ab2f600c251c4a3927556e9d5ca323f37b17f SHA512 9665e3d5253f49a55921012bd21a8688210a1993ba6be4ad17b5ba5619104a50f3199d49a0eb83cf29db5a06c407beb15616bfe71338c680fe34ec47564c4b43
DIST freebsd-src-11.1.tar.xz 147661560 BLAKE2B a9e6ba9d0e12c8b56ac58575d5f02931edbb6a3545d9dccae78810d2d0470a29b29dd7f724b03b8afafbca23717a71346e4cfbd3530e0f40118a23609c3f414e SHA512 b97707ec7a601ca6bcb682c45f6d94a38484301ac24630d7285eff6f88b027ce6900c93fc62f8ce36e0cf32c91f73a9d1c999db397b7f8782fd74a8551a03aca

View File

@@ -1,38 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=3
inherit bsdmk freebsd
DESCRIPTION="Makefile definitions used for building and installing libraries and system files"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="userland_GNU"
SRC_URI="mirror://gentoo/${SHARE}.tar.bz2"
RDEPEND=""
DEPEND=""
RESTRICT="strip"
S="${WORKDIR}/share/mk"
src_prepare() {
epatch "${FILESDIR}/${PN}-9.1-gentoo.patch"
epatch "${FILESDIR}/${PN}-add-nossp-cflags.patch"
use userland_GNU && epatch "${FILESDIR}/${PN}-9.1-gnu.patch"
}
src_compile() { :; }
src_install() {
if [[ ${CHOST} != *-freebsd* ]]; then
insinto /usr/share/mk/freebsd
else
insinto /usr/share/mk
fi
doins *.mk *.awk
}