diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2012-01-13 17:31:52 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2012-01-13 17:31:52 +0000 |
commit | 985572b6c74218acd38e933e4bd3a5b0bbf1cd12 (patch) | |
tree | bcdaa368d1c084db04f38398df5f66bcb478f0de /media-sound/podracer/podracer-1.4.ebuild | |
parent | rm old version (diff) | |
download | darkside-985572b6c74218acd38e933e4bd3a5b0bbf1cd12.tar.gz darkside-985572b6c74218acd38e933e4bd3a5b0bbf1cd12.tar.bz2 darkside-985572b6c74218acd38e933e4bd3a5b0bbf1cd12.zip |
[media-sound/podracer] New ebuild, bug 152608 by Thomas Tuttle with updates by me
Diffstat (limited to 'media-sound/podracer/podracer-1.4.ebuild')
-rw-r--r-- | media-sound/podracer/podracer-1.4.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/media-sound/podracer/podracer-1.4.ebuild b/media-sound/podracer/podracer-1.4.ebuild new file mode 100644 index 0000000..a4a323c --- /dev/null +++ b/media-sound/podracer/podracer-1.4.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +DESCRIPTION="Automated podcast download" +HOMEPAGE="http://podracer.sourceforge.net/" +SRC_URI="mirror://sourceforge/$PN/$P.tar.bz2" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="app-shells/bash + net-misc/curl" + +src_compile() { + gunzip podracer.1.gz; +} + +src_install() { + dobin podracer + sed -i -e "s:sample=/usr/share/doc/\$progname/sample.subscriptions:sample=/usr/share/doc/${PF}/sample.subscriptions:" ${D}/usr/bin/podracer || die + dodoc CREDITS LICENSE README ChangeLog TODO + doman podracer.1 + insinto /usr/share/doc/$PF + doins sample.subscriptions + insinto /etc/ + doins podracer.conf +} |