aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-news/rssdler/rssdler-0.4.2.ebuild')
-rw-r--r--net-news/rssdler/rssdler-0.4.2.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/net-news/rssdler/rssdler-0.4.2.ebuild b/net-news/rssdler/rssdler-0.4.2.ebuild
deleted file mode 100644
index e159fd6..0000000
--- a/net-news/rssdler/rssdler-0.4.2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-news/rawdog/rawdog-2.13.ebuild,v 1.9 2011/01/07 00:32:29 ranger Exp $
-
-EAPI=2
-
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-
-inherit distutils
-
-DESCRIPTION="Automatically fetches objects from RSS feeds, such as podcasts or torrents"
-HOMEPAGE="http://code.google.com/p/rssdler"
-SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="dev-python/feedparser"
-RDEPEND=""
-
-# Version number without separators
-MY_P="${PN}${PV//.}"
-S="${WORKDIR}/${MY_P}"
-
-src_install() {
- distutils_src_install
-
- dodoc README || die
- newman "${FILESDIR}/rssdler.man" rssdler.1 || die
-}
-
-pkg_postinst() {
- elog 'For an intial config file, run the following as a normal user:'
- elog ' $ C="${HOME}/.rssdler/config.txt"'
- elog ' $ mkdir -p `dirname $C`'
- elog ' $ ! [ -f $C ] && rssdler --comment-config > $C'
- elog ' $ nano $C'
- echo
- elog 'If you encounter problems with referers or redirects, installing'
- elog ' dev-python/mechanize is recommended. See man rssdler for more'
- echo
-}