forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
convertlit-1.8-r3.ebuild
44 lines (32 loc) · 949 Bytes
/
convertlit-1.8-r3.ebuild
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit 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"
S="${WORKDIR}"
PATCHES=(
"${FILESDIR}/${P}-respectflags-r1.patch"
"${FILESDIR}/fix-Wformat-security-warnings.patch"
"${FILESDIR}/support-ar-variable.patch"
)
src_compile() {
tc-export CC
cd "${S}/lib" || die "failed to change into ${S}/lib directory"
emake
cd "${S}/${MY_P}" || die "failed to change into ${S}/${MY_P} directory"
emake
}
src_install() {
einstalldocs
dobin "${MY_P}/clit"
}