blob: c8eeb6739720dd8f9e78e0577720a8807cce94d1 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/publib/publib-0.31.ebuild,v 1.10 2004/06/24 23:32:08 agriffis Exp $
DESCRIPTION="C library of misc utility functions (parsing, data structs, etc.)"
SRC_URI="http://liw.iki.fi/liw/programs/debian/publib_${PV}.tar.gz"
HOMEPAGE="http://liw.iki.fi/liw/programs/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc"
DEPEND="virtual/glibc"
src_compile() {
mkdir objs
cd objs
../framework/configure \
--host=${CHOST} \
--prefix=/usr \
--mandir=/usr/share/man \
--with-modules=${S}/liw \
--with-library=publib \
--with-libshort=pub || die "./configure failed"
emake || die "emake failed"
}
src_install() {
# install extra docs
dodoc Changes framework/README framework/COPYING framework/TODO
dodoc framework/Blurb debian/changelog
# main install
cd objs
dodir /usr/share/man/mano
dodir /usr/lib
dodir /usr/include/publib
make prefix=${D}/usr man3ext=o man3dir=${D}/usr/share/man/mano install \
|| die "make install failed"
# adjust man page titles to fit the "o" set above (instead of "3")
for file in ${D}/usr/share/man/mano/*; do
sed 's/^\(\.TH [A-Z0-9]* \)3/\1o/' $file > $file.new
mv $file.new $file
done
}
|