diff options
author | Sam James <sam@gentoo.org> | 2022-03-04 23:59:03 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-04 23:59:03 +0000 |
commit | 0691674fcff79900cc002d06cdd4dafd3baa14b0 (patch) | |
tree | 5dcfce19be85e8acaa32da9123e011e70e53e359 /net-news | |
parent | net-news/amphetadesk: update EAPI 6 -> 8 (diff) | |
download | gentoo-0691674fcff79900cc002d06cdd4dafd3baa14b0.tar.gz gentoo-0691674fcff79900cc002d06cdd4dafd3baa14b0.tar.bz2 gentoo-0691674fcff79900cc002d06cdd4dafd3baa14b0.zip |
Revert "net-news/amphetadesk: update EAPI 6 -> 8"
Didn't mean to push this one yet.
This reverts commit 5057266615533ccea68038db9f018fd715851286.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-news')
-rw-r--r-- | net-news/amphetadesk/amphetadesk-0.93.1-r1.ebuild | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/net-news/amphetadesk/amphetadesk-0.93.1-r1.ebuild b/net-news/amphetadesk/amphetadesk-0.93.1-r1.ebuild index 4fd7f473b1c0..59142dc72d49 100644 --- a/net-news/amphetadesk/amphetadesk-0.93.1-r1.ebuild +++ b/net-news/amphetadesk/amphetadesk-0.93.1-r1.ebuild @@ -1,35 +1,36 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=8 +EAPI=6 DESCRIPTION="AmphetaDesk is a free syndicated news aggregator" HOMEPAGE="http://www.disobey.com/amphetadesk/" SRC_URI="mirror://sourceforge/sourceforge/amphetadesk/${PN}-src-v${PV}.tar.gz" -S="${WORKDIR}"/${PN}-src-v${PV} - LICENSE="Artistic" SLOT="0" KEYWORDS="~amd64 ~ppc x86" - -RDEPEND="dev-lang/perl - dev-libs/expat +IUSE="" +DEPEND="dev-lang/perl dev-perl/libwww-perl + dev-libs/expat dev-perl/XML-Parser virtual/perl-IO-Compress" +S=${WORKDIR}/${PN}-src-v${PV} src_install() { - insinto /usr/share/amphetadesk - doins "${S}"/AmphetaDesk.pl - doins -R "${S}"/{data,docs,lib,templates} - + dodir /usr/share/amphetadesk + cp "${S}"/AmphetaDesk.pl "${D}"/usr/share/amphetadesk/AmphetaDesk.pl dodoc README.txt + cp -R "${S}"/data "${D}"/usr/share/amphetadesk + cp -R "${S}"/docs "${D}"/usr/share/amphetadesk + cp -R "${S}"/lib "${D}"/usr/share/amphetadesk + cp -R "${S}"/templates "${D}"/usr/share/amphetadesk newinitd "${FILESDIR}"/amphetadesk.initd amphetadesk } pkg_postinst() { # fixes bug #25066 thanks to kloeri - [[ -x /etc/init.d/depscan.sh ]] && /etc/init.d/depscan.sh + /etc/init.d/depscan.sh einfo "AmphetaDesk should be started and stopped with the runscript located at " einfo "'/etc/init.d/amphetadesk'. You can access AmphetaDesk after it has been" |