forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes: gentoo#1617 Package-Manager: portage-2.3.0_rc1
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST podget-0.7.14.tar.gz 63356 SHA256 02de95ef369eafa8d1aa998ff00bdad780cd4ec30b7fa09d64edc0ffb97ecc6f SHA512 a54d4cdac88f220f470304d9b50ef00c01540ca2e986e4ffc80d9d5aea4ddd6b80484e243f742967dcf800780a8fdfdd55437f9fe710e536ca6a5d6140374022 WHIRLPOOL 9cfd17b0d73c464dd9545cee99d27980afcf2b121dc0dd815343b70087cf79d9ef8b5150d1be3cd8d0f3d0ed997ac8673fd7e420aeea00ddbe5a855ae148fe57 | ||
DIST podget-0.8.tar.gz 65570 SHA256 5b955bab987c9f79990648758ceb03cefee9364835acd92bba309d8aef60fcbe SHA512 b7753ff2a65ed2999c16e891b0268dcc321882048930f77223f70adfa703020e6d799286aa071a6eaeabe090fce5312dfdf3f836a3d1598673538a5ead9e5bd0 WHIRLPOOL 514a743d3b6d1e841a4a9f78f2ea06a70a6b6df76afab85588ecb06cdaacb656c85b4e0390476a2bde8f0b996e5a362d64d3caa8d81bb4cd79e595f95a9000fe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
DESCRIPTION="A simple podcast aggregator optimized for running as a scheduled job" | ||
HOMEPAGE="http://podget.sourceforge.net/ https://github.com/dvehrs/podget" | ||
SRC_URI="https://github.com/dvehrs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="GPL-3+" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm ~x86" | ||
IUSE="" | ||
|
||
RDEPEND=" | ||
net-misc/wget | ||
virtual/libiconv | ||
" | ||
|
||
DOCS=( README Changelog ) | ||
|
||
src_prepare() { | ||
default_src_prepare | ||
# See https://github.com/dvehrs/podget/issues/12 | ||
sed -i -e '/^VERSION=/s|$|.0|' podget || die | ||
} | ||
|
||
src_compile() { | ||
# There is a Makefile that we don't want to use. | ||
:; | ||
} | ||
|
||
src_install() { | ||
dobin ${PN} | ||
doman DOC/${PN}.7 | ||
einstalldocs | ||
} |