You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.3 KiB
42 lines
1.3 KiB
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
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"
|
|
LICENSE="Artistic"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ppc x86"
|
|
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() {
|
|
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
|
|
/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"
|
|
einfo "started in your browser of choice on port 8888."
|
|
einfo ""
|
|
ewarn "If you start AmphetaDesk at boot with rc-update don't give it a browser"
|
|
ewarn "to start up when it loads (in the options page)"
|
|
}
|