Gentoo Archives: gentoo-commits

From: "Nathan Phillip Brink (binki)" <binki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/liblist: ChangeLog liblist-2.4.ebuild
Date: Fri, 01 Jul 2011 22:14:09
Message-Id: 20110701221357.10F6C2004B@flycatcher.gentoo.org
1 binki 11/07/01 22:13:57
2
3 Modified: ChangeLog
4 Added: liblist-2.4.ebuild
5 Log:
6 Bump to liblist-2.4, fixing bug #362067 and moving to autotools-util and EAPI=4.
7
8 (Portage version: 2.2.0_alpha41-r1/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.12 dev-libs/liblist/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/liblist/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/liblist/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/liblist/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/liblist/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 1 Jul 2011 03:50:35 -0000 1.11
24 +++ ChangeLog 1 Jul 2011 22:13:56 -0000 1.12
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/liblist
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblist/ChangeLog,v 1.11 2011/07/01 03:50:35 binki Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblist/ChangeLog,v 1.12 2011/07/01 22:13:56 binki Exp $
30 +
31 +*liblist-2.4 (01 Jul 2011)
32 +
33 + 01 Jul 2011; Nathan Phillip Brink <binki@g.o> +liblist-2.4.ebuild:
34 + Bump to liblist-2.4, fixing bug #362067 and moving to autotools-util and
35 + EAPI=4.
36
37 01 Jul 2011; Nathan Phillip Brink <binki@g.o> metadata.xml:
38 Set myself (binki) as maintainer.
39
40
41
42 1.1 dev-libs/liblist/liblist-2.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/liblist/liblist-2.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/liblist/liblist-2.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: liblist-2.4.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/liblist/liblist-2.4.ebuild,v 1.1 2011/07/01 22:13:56 binki Exp $
52
53 EAPI=4
54
55 inherit autotools-utils multilib
56
57 DESCRIPTION="This package provides generic linked-list manipulation routines, plus queues and stacks"
58 HOMEPAGE="http://ohnopub.net/liblist"
59 SRC_URI="ftp://ohnopublishing.net/mirror/${P}.tar.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux"
64 IUSE="doc examples static-libs"
65
66 RDEPEND="doc? ( media-gfx/transfig
67 dev-texlive/texlive-metapost
68 virtual/latex-base )"
69 DEPEND="${RDEPEND}"
70
71 src_configure() {
72 local myeconfargs=(
73 --docdir="${EPREFIX}"/usr/share/doc/${PF}
74 $(use_enable doc docs)
75 $(use_enable examples)
76 )
77
78 autotools-utils_src_configure
79 }
80
81 src_install() {
82 autotools-utils_src_install
83
84 dodoc README
85
86 if use examples; then
87 insinto /usr/share/doc/${PF}/examples
88 doins examples/{*.c,Makefile,README}
89 insinto /usr/share/doc/${PF}/examples/cache
90 doins examples/cache/{*.c,README}
91 fi
92
93 docompress -x /usr/share/doc/${PF}/{list.0,paper.dvi,examples}
94 }
95
96 pkg_postinst() {
97 elog "Note that man pages for this package have been renamed to avoid"
98 elog "name collisions with some system functions. However, the libs"
99 elog "and header files have not been changed."
100 elog "The new names are liblist, lcache, liblist_queue, and liblist_stack."
101 }