Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/cweb: ChangeLog cweb-3.64-r1.ebuild
Date: Tue, 01 Sep 2009 12:41:20
Message-Id: E1MiXUb-0006lG-Lb@stork.gentoo.org
1 jer 09/09/01 17:50:05
2
3 Modified: ChangeLog
4 Added: cweb-3.64-r1.ebuild
5 Log:
6 Respect CC (bug #243994).
7 (Portage version: 2.2_rc40/cvs/Linux i686)
8
9 Revision Changes Path
10 1.19 dev-util/cweb/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/cweb/ChangeLog?rev=1.19&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/cweb/ChangeLog?rev=1.19&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/cweb/ChangeLog?r1=1.18&r2=1.19
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/cweb/ChangeLog,v
19 retrieving revision 1.18
20 retrieving revision 1.19
21 diff -u -r1.18 -r1.19
22 --- ChangeLog 3 Aug 2009 22:29:02 -0000 1.18
23 +++ ChangeLog 1 Sep 2009 17:50:05 -0000 1.19
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-util/cweb
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cweb/ChangeLog,v 1.18 2009/08/03 22:29:02 flameeyes Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cweb/ChangeLog,v 1.19 2009/09/01 17:50:05 jer Exp $
29 +
30 +*cweb-3.64-r1 (01 Sep 2009)
31 +
32 + 01 Sep 2009; Jeroen Roovers <jer@g.o> +cweb-3.64-r1.ebuild,
33 + +files/cweb-3.64-make.patch:
34 + Respect CC (bug #243994).
35
36 03 Aug 2009; Diego E. Pettenò <flameeyes@g.o> cweb-3.64.ebuild:
37 Use -j1 for make (bug #258130).
38
39
40
41 1.1 dev-util/cweb/cweb-3.64-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/cweb/cweb-3.64-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/cweb/cweb-3.64-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: cweb-3.64-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/cweb/cweb-3.64-r1.ebuild,v 1.1 2009/09/01 17:50:05 jer Exp $
51
52 EAPI="2"
53
54 inherit eutils toolchain-funcs
55
56 S=${WORKDIR}
57 DESCRIPTION="Knuth's and Levy's C/C++ documenting system"
58 SRC_URI="ftp://labrea.stanford.edu/pub/cweb/cweb-${PV}.tar.gz"
59 HOMEPAGE="http://www-cs-faculty.stanford.edu/~knuth/cweb.html"
60
61 SLOT="0"
62 LICENSE="BSD"
63 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
64 IUSE=""
65
66 DEPEND="virtual/libc
67 !app-text/tetex
68 !app-text/texlive-core
69 !app-text/ptex"
70
71 src_prepare() {
72 epatch "${FILESDIR}/${P}-make.patch"
73 }
74
75 src_compile() {
76 tc-export CC
77 # bug #258130
78 emake -j1 all CFLAGS="${CFLAGS}" LINKFLAGS="${LDFLAGS}" || die
79 }
80
81 src_install () {
82 dobin ctangle cweave
83 doman cweb.1
84 dodoc README cwebman.tex
85 dodir /usr/share/texmf/tex/generic
86 insinto /usr/share/texmf/tex/generic
87 doins cwebmac.tex
88 dodir /usr/lib/cweb
89 insinto /usr/lib/cweb
90 doins c++lib.w
91 dodir /usr/share/emacs/site-lisp/
92 insinto /usr/share/emacs/site-lisp/
93 doins cweb.el
94 }
95
96 # Going to use this, just to make sure. May convert to a latex-package later.
97 pkg_postinst() {
98 texconfig rehash
99 }