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.
47 lines
882 B
47 lines
882 B
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
inherit eutils toolchain-funcs
|
|
|
|
MY_P="clit${PV//./}"
|
|
|
|
DESCRIPTION="CLit converts MS ebook .lit files to .opf (xml+html+png+jpg)"
|
|
HOMEPAGE="http://www.convertlit.com/"
|
|
SRC_URI="http://www.convertlit.com/${MY_P}src.zip"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=dev-libs/libtommath-0.36-r1"
|
|
|
|
DEPEND="${RDEPEND}
|
|
app-arch/unzip"
|
|
|
|
RDEPEND="${RDEPEND}
|
|
!app-text/open_c-lit"
|
|
|
|
S=${WORKDIR}
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
|
|
epatch "${FILESDIR}/${P}-respectflags.patch"
|
|
}
|
|
|
|
src_compile() {
|
|
tc-export CC
|
|
|
|
cd "${S}"/lib
|
|
emake || die "make lib failed"
|
|
cd "${S}"/${MY_P}
|
|
emake || die "make ${MY_P} failed"
|
|
}
|
|
|
|
src_install() {
|
|
dobin ${MY_P}/clit || die
|
|
dodoc README
|
|
}
|