Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/dpic: ChangeLog dpic-20090713.ebuild
Date: Wed, 05 Aug 2009 07:28:47
Message-Id: E1MYavW-00061C-6H@stork.gentoo.org
1 aballier 09/08/05 07:28:46
2
3 Modified: ChangeLog
4 Added: dpic-20090713.ebuild
5 Log:
6 version bump, by Matthias Schwarzott <zzam@g.o>, bug #280357
7 (Portage version: 2.2_rc36/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 media-gfx/dpic/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/dpic/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/dpic/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/dpic/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/dpic/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 18 Apr 2009 22:18:52 -0000 1.2
23 +++ ChangeLog 5 Aug 2009 07:28:46 -0000 1.3
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-gfx/dpic
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/dpic/ChangeLog,v 1.2 2009/04/18 22:18:52 zzam Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/dpic/ChangeLog,v 1.3 2009/08/05 07:28:46 aballier Exp $
29 +
30 +*dpic-20090713 (05 Aug 2009)
31 +
32 + 05 Aug 2009; Alexis Ballier <aballier@g.o> +dpic-20090713.ebuild:
33 + version bump, by Matthias Schwarzott <zzam@g.o>, bug #280357
34
35 18 Apr 2009; Matthias Schwarzott <zzam@g.o> dpic-20080511.ebuild:
36 Added ~x86 keyword.
37
38
39
40 1.1 media-gfx/dpic/dpic-20090713.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/dpic/dpic-20090713.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/dpic/dpic-20090713.ebuild?rev=1.1&content-type=text/plain
44
45 Index: dpic-20090713.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-gfx/dpic/dpic-20090713.ebuild,v 1.1 2009/08/05 07:28:46 aballier Exp $
50
51 inherit toolchain-funcs
52
53 DESCRIPTION="Converts PIC plots into pstricks, PGF/TikZ, PostScript, MetaPost and TeX"
54 HOMEPAGE="http://ece.uwaterloo.ca/~aplevich/dpic"
55 SRC_URI="mirror://gentoo/${P}.tar.gz"
56
57 LICENSE="as-is"
58 SLOT="0"
59 KEYWORDS="~amd64 ~x86"
60 IUSE="examples"
61
62 DEPEND=""
63
64 S="${WORKDIR}/${PN}"
65
66 src_compile () {
67 # Instead of patching the makefile, we just create a new one that will use
68 # cflags, ldflags & friends
69 echo "LDLIBS=-lm" > Makefile
70 echo "dpic: dpic.o dpic2.o p2clib.o" >> Makefile
71 tc-export CC
72 emake || die "emake failed"
73 }
74
75 src_install () {
76 dobin dpic || die "installing dpic failed"
77 dodoc README doc/dpicdoc.pdf doc/gpic.ps.gz || die "installing docs failed"
78 if use examples; then
79 insinto /usr/share/doc/${PF}/examples
80 doins doc/examples/README doc/examples/Examples.txt doc/examples/sources/* || die "installing examples failed"
81 fi
82 }