blob: a12d47f5ab18f2724ce2cb1f431822ee5dd7f319 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/webcomics-collector/webcomics-collector-0.7.1.ebuild,v 1.2 2004/10/05 13:34:52 pvdabeel Exp $
inherit distutils
DESCRIPTION="python script for downloading webcomics"
HOMEPAGE="http://collector.skumleren.net/"
SRC_URI="http://collector.skumleren.net/releases/collector-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ppc"
IUSE=""
S=${WORKDIR}/collector-${PV}
pkg_postinst() {
ewarn "If you have comic archives with any comics of type 'lateststatic',"
ewarn "you have to use the tool fix_lateststatic.py to make them work"
ewarn "with ${P}"
ewarn "Also note that the definition format has changed, any custom defs"
ewarn "you have will need updating. See the documentation for further info."
}
|