blob: 35be0f9a4ea30c08abc2b511a9178978f0e93f65 (
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
57
58
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblist/liblist-2.1.ebuild,v 1.1 2009/04/20 05:44:09 nerdboy Exp $
inherit eutils toolchain-funcs
DESCRIPTION="This package provides generic linked-list manipulation routines, plus queues and stacks."
HOMEPAGE="http://www.gentoogeek.org/viewvc/C/liblist/"
SRC_URI="http://www.gentoogeek.org/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="doc examples"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e "s:/usr/lib:/usr/$(get_libdir):g" Makefile \
examples/cache/Makefile || die "sed 1 failed"
}
src_compile() {
make CC="$(tc-getCC)" || die "make failed"
}
src_install() {
newman list.3 llist.3
newman stack.man lstack.3
newman queue.man lqueue.3
dolib.a liblist.a
insinto /usr/include
doins list.h queue.h stack.h
dodoc README
if use examples; then
dolib.a examples/cache/libcache.a
dobin examples/cache/cachetest
newman cache.3 lcache.3
insinto /usr/share/doc/${P}/examples
doins examples/{*.c,Makefile,README}
insinto /usr/share/doc/${P}/examples/cache
doins examples/cache/{*.c,Makefile,README}
doins
fi
if use doc; then
insinto /usr/share/doc/${P}
doins paper/paper.ps
fi
}
pkg_postinst() {
elog "Note the man pages for this package have been renamed to avoid"
elog "name collisions with some system functions, however, the libs"
elog "and header files have not been changed."
elog "The new names are llist, lcache, lqueue, and lstack."
}
|