diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-04-07 10:49:14 +0200 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2024-04-07 12:30:51 +0200 |
commit | e8835c99b0b32c3c27b1bd5a618f2ff1df7f7f07 (patch) | |
tree | 00c1d9669ddbe6a4e359087e17a4b0d1b4c5eaf4 /sys-apps/darwin-miscutils/darwin-miscutils-12-r1.ebuild | |
parent | dev-qt/qtlocation: keyword 5.15.13 for ~loong (diff) | |
download | gentoo-e8835c99b0b32c3c27b1bd5a618f2ff1df7f7f07.tar.gz gentoo-e8835c99b0b32c3c27b1bd5a618f2ff1df7f7f07.tar.bz2 gentoo-e8835c99b0b32c3c27b1bd5a618f2ff1df7f7f07.zip |
sys-apps/darwin-miscutils: 12: EAPI8 bump, ebuild improvements
Closes: https://github.com/gentoo/gentoo/pull/36147
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'sys-apps/darwin-miscutils/darwin-miscutils-12-r1.ebuild')
-rw-r--r-- | sys-apps/darwin-miscutils/darwin-miscutils-12-r1.ebuild | 157 |
1 files changed, 157 insertions, 0 deletions
diff --git a/sys-apps/darwin-miscutils/darwin-miscutils-12-r1.ebuild b/sys-apps/darwin-miscutils/darwin-miscutils-12-r1.ebuild new file mode 100644 index 000000000000..5762a7cf8207 --- /dev/null +++ b/sys-apps/darwin-miscutils/darwin-miscutils-12-r1.ebuild @@ -0,0 +1,157 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit edo toolchain-funcs + +# from macOS 10.13 +MISC_VER=34 +SHELL_VER=203 +# from DT 8.2.1 +DEV_VER=63 +# from 10.7.4 +MD_VER=147 # adv_cmds-148 in 10.8 has no md, bug #428530 + +DESCRIPTION="Miscellaneous commands used on macOS, High Sierra 10.13" +HOMEPAGE=" + https://www.opensource.apple.com/ + https://github.com/apple-oss-distributions" +SRC_URI=" + https://github.com/apple-oss-distributions/adv_cmds/blob/c8dbac91aa855b2d05282f45709b318f8bc3693d/md/md.1 \ + -> adv_cmds-md-${MD_VER}.1 + https://github.com/apple-oss-distributions/adv_cmds/blob/c8dbac91aa855b2d05282f45709b318f8bc3693d/md/md.c \ + -> adv_cmds-md-${MD_VER}.c + https://642666.bugs.gentoo.org/attachment.cgi?id=511988 -> adv_cmds-md-${MD_VER}-compile.patch + https://opensource.apple.com/tarballs/misc_cmds/misc_cmds-${MISC_VER}.tar.gz + https://opensource.apple.com/tarballs/shell_cmds/shell_cmds-${SHELL_VER}.tar.gz + https://opensource.apple.com/tarballs/developer_cmds/developer_cmds-${DEV_VER}.tar.gz" +S="${WORKDIR}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~arm64-macos ~ppc-macos ~x64-macos" + +# for ncal +DEPEND="sys-libs/ncurses:=" +RDEPEND="${DEPEND}" + +src_prepare() { + cd "${S}"/shell_cmds-${SHELL_VER} || die + eapply "${FILESDIR}"/${PN}-6-w64.patch + + mkdir -p "${S}"/adv_cmds-${MD_VER}/md || die + cd "${S}"/adv_cmds-${MD_VER} || die + cp "${DISTDIR}"/adv_cmds-md-${MD_VER}.c md/md.c || die + cp "${DISTDIR}"/adv_cmds-md-${MD_VER}.1 md/md.1 || die + eapply "${DISTDIR}"/adv_cmds-md-${MD_VER}-compile.patch + eapply "${FILESDIR}"/${PN}-12-md-register.patch + + cd "${S}" || die + eapply_user +} + +src_compile() { + local flags=( + ${CFLAGS} + -I. + -D__FBSDID=__RCSID + -Du_int=uint32_t + -include stdint.h + ) + + local TS="${S}/misc_cmds-${MISC_VER}" + local t + # tsort is provided by coreutils + for t in leave units calendar; do + cd "${TS}/${t}" || die + echo "in ${TS}/${t}:" + edo $(tc-getCC) ${flags[@]} -o ${t} ${LDFLAGS} *.c + done + # compile cal separately + cd "${TS}/ncal" || die + echo "in ${TS}/ncal:" + edo $(tc-getCC) ${flags[@]} -c calendar.c + edo $(tc-getCC) ${flags[@]} -c easter.c + edo $(tc-getCC) ${flags[@]} -c ncal.c + edo $(tc-getCC) -o cal ${LDFLAGS} -lncurses calendar.o easter.o ncal.o + + TS="${S}/shell_cmds-${SHELL_VER}" + # only pick those tools not provided by coreutils, findutils + for t in \ + apply getopt hexdump hostname jot kill killall \ + lastcomm renice script shlock time whereis; + do + echo "in ${TS}/${t}:" + cd "${TS}/${t}" || die + edo $(tc-getCC) ${flags[@]} -o ${t} ${LDFLAGS} *.c + done + cd "${TS}/w" || die + sed -i -e '/#include <libutil.h>/d' w.c || die + echo "in ${TS}/w:" + edo $(tc-getCC) ${flags[@]} -DHAVE_UTMPX=1 ${LDFLAGS} -lresolv -o w *.c + + TS="${S}/developer_cmds-${DEV_VER}" + # only pick those tools that do not conflict (no ctags and indent) + # do not install lorder, mkdep and vgrind as they are a non-prefix-aware + # shell scripts + # don't install rpcgen, as it is heavily related to the OS it runs + # on (and this is the High Sierra version) + for t in asa unifdef what ; do + echo "in ${TS}/${t}:" + cd "${TS}/${t}" || die + edo $(tc-getCC) ${flags[@]} -o ${t} ${LDFLAGS} *.c + done + + # provide this one for gcc-apple + TS="${S}/adv_cmds-${MD_VER}" + for t in md ; do + echo "in ${TS}/${t}:" + cd "${TS}/${t}" || die + edo $(tc-getCC) ${flags[@]} -o ${t} ${LDFLAGS} *.c + done +} + +src_install() { + mkdir -p "${ED}"/{,usr/}bin || die + + local TS="${S}/misc_cmds-${MISC_VER}" + local t + for t in leave units calendar ; do + cp "${TS}/${t}/${t}" "${ED}"/usr/bin/ || die + doman "${TS}/${t}/${t}.1" + done + # copy cal separately + cp "${TS}/ncal/cal" "${ED}"/usr/bin/ncal || die + dosym ncal /usr/bin/cal + doman "${TS}/ncal/ncal.1" + dosym ncal.1 /usr/share/man/man1/cal.1 + + TS="${S}/shell_cmds-${SHELL_VER}" + for t in \ + apply getopt hexdump hostname jot killall lastcomm \ + renice script shlock time w whereis; + do + cp "${TS}/${t}/${t}" "${ED}"/usr/bin/ || die + [[ -f "${TS}/${t}/${t}.1" ]] && doman "${TS}/${t}/${t}.1" + [[ -f "${TS}/${t}/${t}.8" ]] && doman "${TS}/${t}/${t}.8" + done + cp "${TS}/w/w" "${ED}"/usr/bin/uptime || die + doman "${TS}/w/uptime.1" + for t in hostname kill; do + cp "${TS}/${t}/${t}" "${ED}"/bin/ || die + doman "${TS}/${t}/${t}.1" + done + + TS="${S}/developer_cmds-${DEV_VER}" + for t in asa unifdef what ; do + cp "${TS}/${t}/${t}" "${ED}"/usr/bin/ || die + doman "${TS}/${t}/${t}.1" + done + + TS="${S}/adv_cmds-${MD_VER}" + for t in md ; do + cp "${TS}/${t}/${t}" "${ED}"/usr/bin/ || die + doman "${TS}/${t}/${t}.1" + done +} |