blob: 4fadf6901602499f6ddbd0bd3169c03d539ba412 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/chmlib/chmlib-0.31.ebuild,v 1.10 2004/09/02 22:43:03 pvdabeel Exp $
DESCRIPTION="Library for MS CHM (compressed html) file format plus extracting and http server utils"
HOMEPAGE="http://66.93.236.84/~jedwin/projects/chmlib/"
SRC_URI="http://66.93.236.84/~jedwin/projects/chmlib/${PF}.tgz"
DEPEND=">=sys-apps/sed-4"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="x86 ppc ~amd64"
IUSE=""
src_unpack() {
unpack ${A}
cd ${S}
sed -i "s:gcc-3.2:gcc:" Makefile
sed -i "s:/usr/local/:/${D}/usr/:" Makefile
if [ "${ARCH}" = "ppc" ]; then
# In this case it is safe to take this rather
# stupid action =)
sed -i "s:__i386__:__powerpc__:" chm_lib.c
fi
if [ "${ARCH}" = "amd64" ]; then
sed -i "s:__i386__:__x86_64__:" chm_lib.c
fi
}
src_compile() {
emake || die
}
src_install() {
#Make expects to find these dirs.
dodir /usr/bin
dodir /usr/lib
dodir /usr/include
dodir /usr/share/doc/${PF}/examples/
make install
#Build additional utils, making this lib useful by itself.
#This cannot be build in src_compile as it needs to find chmlib.
emake extract_chmLib || die
emake chm_http || die
exeinto /usr/bin
newexe extract_chmLib chmextract
newexe chm_http chmhttp
#Install examples as well.
insinto /usr/share/doc/${PF}/examples/
doins test_chmLib.c enum_chmLib.c chm_http.c
dodoc AUTHORS NEWS README
}
|