You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-text/chm2pdf/chm2pdf-0.9.1.ebuild

34 lines
768 B

# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/chm2pdf/chm2pdf-0.9.1.ebuild,v 1.5 2010/05/04 17:11:30 hwoarang Exp $
EAPI="2"
PYTHON_DEPEND="2"
inherit python eutils
DESCRIPTION="A script that converts a CHM file into a single PDF file."
HOMEPAGE="http://code.google.com/p/chm2pdf/"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="amd64 x86"
SLOT="0"
IUSE=""
RDEPEND="dev-python/pychm
app-text/htmldoc
dev-libs/chmlib"
pkg_setup() {
python_set_active_version 2
}
src_prepare(){
epatch "${FILESDIR}/tempdir.patch"
}
src_install() {
dobin ${PN} || die "failed to create executable"
dodoc README || die "dodoc failed"
}