blob: 0a9ca8b3c7127e5fd93ec105a9ed5d02b8af321a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/freshmeat-submit/freshmeat-submit-1.4.ebuild,v 1.5 2004/12/10 14:09:46 ka0ttic Exp $
DESCRIPTION="A tool to submit version updates to freshmeat.net. It is designed to run from within a project release script, and uses freshmeat.net's XML- RPC interface."
HOMEPAGE="http://www.catb.org/~esr/freshmeat-submit/"
SRC_URI="http://www.catb.org/~esr/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE=""
RDEPEND="virtual/python"
DEPEND="${RDEPEND}"
src_compile() {
einfo "Nothing to compile"
}
src_install() {
doman freshmeat-submit.1
dodoc AUTHORS COPYING README freshmeat-submit.spec freshmeat-submit.xml
dobin freshmeat-submit
}
|