From 2719f73b6813d11d13a9650cdd2ab8ec6e69385d Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 9 Jul 2022 15:43:36 +0100 Subject: gentoo resync : 09.07.2022 --- app-arch/stuffit/Manifest | 2 +- app-arch/stuffit/stuffit-5.2.0.611-r1.ebuild | 63 ++++++++++++++++++++++++++ app-arch/stuffit/stuffit-5.2.0.611.ebuild | 67 ---------------------------- 3 files changed, 64 insertions(+), 68 deletions(-) create mode 100644 app-arch/stuffit/stuffit-5.2.0.611-r1.ebuild delete mode 100644 app-arch/stuffit/stuffit-5.2.0.611.ebuild (limited to 'app-arch/stuffit') diff --git a/app-arch/stuffit/Manifest b/app-arch/stuffit/Manifest index 5588c079b17d..ce7d9b4fcd60 100644 --- a/app-arch/stuffit/Manifest +++ b/app-arch/stuffit/Manifest @@ -1,3 +1,3 @@ DIST stuffit520.611linux-i386.tar.gz 1955619 BLAKE2B fb80abef29d266c93747b3359c62840afa15a32786a82ee01cab22cf0eddad750817c87b767632df5bb2ef681c1c9dd6dfe136dae388f8390bcab0b137a2c0bc SHA512 a1d4631c2d238b49c710816cd5ed8a01dcf52c29b870297b8dfd76fb0cb6e725c5b0f9d4a6c155c7b6980005df52fc4597632f72e90f00bf93ad80a28972270a -EBUILD stuffit-5.2.0.611.ebuild 1483 BLAKE2B 78acbc361330b828415fe6334a62b0bd1048ad927fbf7927df23a01423d78256027e8982869216874517b6faeb93396c1028ff65b87aea527342316c6de19c7e SHA512 013048fca9cbf5ae86fb680c6bfa1de0afcbd1cc45f6143c35be7fb64d1dedc298ed1fa5f564ffcd6502dc8b803a50d6899f1592a49a3a117542a96ffc9f29d5 +EBUILD stuffit-5.2.0.611-r1.ebuild 1423 BLAKE2B c27884d984e25cbd6bffe0d52769c5947234849692053c9001dbe2e87667fef4f02efe44704a9a273caa46200b605772fa60c66712badf4533368ebc029b5b2c SHA512 246d992e7ae780eaad5bb84548c93706920aff74e079a519a4bba8de2a684ed23006884062ebfcb05c4ae7c2700a8f5051bb7c51cd592cd170e26b938b6a7d52 MISC metadata.xml 303 BLAKE2B a964fe090b0cd32923c661a9d1db37d83a5f22c367719b7889e0bf1cd3568ebb48312a44548c366152ae8e91ef9b7d10c494b499bc86cdeb4cea58f19056f6ee SHA512 bcb5015899ec63a37f8e9768d08b97a4b4d37d5794b41914fdaee231602217e78479e7c32110d9bedad037ea4ebddce71c678c667469a7ee0c99c5ba4fb7bc19 diff --git a/app-arch/stuffit/stuffit-5.2.0.611-r1.ebuild b/app-arch/stuffit/stuffit-5.2.0.611-r1.ebuild new file mode 100644 index 000000000000..4edbd3e01728 --- /dev/null +++ b/app-arch/stuffit/stuffit-5.2.0.611-r1.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_P="stuffit520.611linux-i386" + +DESCRIPTION="Aladdin Software's StuffIt and StuffIt Expander" +HOMEPAGE="http://www.stuffit.com/" +SRC_URI="http://my.smithmicro.com/downloads/files/${MY_P}.tar.gz" +S="${WORKDIR}" + +LICENSE="Stuffit" +SLOT="0" +KEYWORDS="-* amd64 x86" +RESTRICT="fetch strip" + +INSTALLDIR="/opt/stuffit" + +pkg_nofetch() { + einfo "Please download stuffit from" + einfo "${SRC_URI}" + einfo "and place the file in your DISTDIR directory." + einfo + einfo "Note that StuffIt requires registration within 30 days," + einfo "but StuffIt Expander is freeware." + einfo +} + +src_install() { + # First do the binaries + exeinto ${INSTALLDIR}/bin + doexe bin/stuff + doexe bin/unstuff + + # Now the registration binary + exeinto ${INSTALLDIR}/extra + doexe bin/register + + # Now the documentation + docinto stuff + dodoc doc/stuff/{README,stuff.html} + docinto unstuff + dodoc doc/unstuff/{README,unstuff.html} + + # And now the man pages + doman man/man1/* + + # Also add the executables to the path + newenvd - 10stuffit <<- EOF + PATH="${EPREFIX}${INSTALLDIR}/bin" + ROOTPATH="${EPREFIX}${INSTALLDIR}/bin" + EOF +} + +pkg_postinst() { + elog + elog "Reminder: StuffIt requires registration within 30 days." + elog "The registration program is located in ${INSTALLDIR}/extra" + elog + elog "The binaries are named 'stuff' and 'unstuff'" + elog +} diff --git a/app-arch/stuffit/stuffit-5.2.0.611.ebuild b/app-arch/stuffit/stuffit-5.2.0.611.ebuild deleted file mode 100644 index f951829d1fe4..000000000000 --- a/app-arch/stuffit/stuffit-5.2.0.611.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -MY_P="stuffit520.611linux-i386" - -DESCRIPTION="Aladdin Software's StuffIt and StuffIt Expander" -HOMEPAGE="http://www.stuffit.com/" -SRC_URI="http://my.smithmicro.com/downloads/files/${MY_P}.tar.gz" - -LICENSE="Stuffit" -SLOT="0" -KEYWORDS="-* amd64 x86" -IUSE="" -RESTRICT="fetch strip" - -S="${WORKDIR}" - -INSTALLDIR=/opt/stuffit - -pkg_nofetch() { - einfo "Please download stuffit from" - einfo "${SRC_URI}" - einfo "and place the file in your DISTDIR directory." - einfo - einfo "Note that StuffIt requires registration within 30 days," - einfo "but StuffIt Expander is freeware." - einfo -} - -src_install() { - # First do the binaries - exeinto ${INSTALLDIR}/bin - doexe bin/stuff - doexe bin/unstuff - - # Now the registration binary - exeinto ${INSTALLDIR}/extra - doexe bin/register - - # Now the documentation - docinto stuff - dodoc doc/stuff/{README,stuff.html} - docinto unstuff - dodoc doc/unstuff/{README,unstuff.html} - - # And now the man pages - doman man/man1/* - - # Also add the executables to the path - dodir /etc/env.d - cat > "${T}"/10stuffit <<- EOF || die - PATH="${EPREFIX}${INSTALLDIR}/bin" - ROOTPATH="${EPREFIX}${INSTALLDIR}/bin" - EOF - doenvd "${T}"/10stuffit -} - -pkg_postinst() { - elog - elog "Reminder: StuffIt requires registration within 30 days." - elog "The registration program is located in ${INSTALLDIR}/extra" - elog - elog "The binaries are named 'stuff' and 'unstuff'" - elog -} -- cgit v1.2.3