Gentoo Archives: gentoo-commits

From: "Denis Dupeyron (calchan)" <calchan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-tex/circuit_macros: ChangeLog circuit_macros-7.7.ebuild
Date: Tue, 29 Oct 2013 14:58:53
Message-Id: 20131029145848.8939420047@flycatcher.gentoo.org
1 calchan 13/10/29 14:58:48
2
3 Modified: ChangeLog
4 Added: circuit_macros-7.7.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.3 dev-tex/circuit_macros/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/circuit_macros/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/circuit_macros/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/circuit_macros/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-tex/circuit_macros/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 4 Jul 2013 00:11:03 -0000 1.2
24 +++ ChangeLog 29 Oct 2013 14:58:48 -0000 1.3
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-tex/circuit_macros
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/circuit_macros/ChangeLog,v 1.2 2013/07/04 00:11:03 calchan Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/circuit_macros/ChangeLog,v 1.3 2013/10/29 14:58:48 calchan Exp $
30 +
31 +*circuit_macros-7.7 (29 Oct 2013)
32 +
33 + 29 Oct 2013; Denis Dupeyron <calchan@g.o> +circuit_macros-7.7.ebuild:
34 + Version bump.
35
36 *circuit_macros-7.6 (04 Jul 2013)
37
38
39
40
41 1.1 dev-tex/circuit_macros/circuit_macros-7.7.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/circuit_macros/circuit_macros-7.7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/circuit_macros/circuit_macros-7.7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: circuit_macros-7.7.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-tex/circuit_macros/circuit_macros-7.7.ebuild,v 1.1 2013/10/29 14:58:48 calchan Exp $
51
52 EAPI=5
53
54 inherit unpacker texlive-common
55
56 DESCRIPTION="M4 Macros for Electric circuit diagrams in TeX or LaTeX"
57 HOMEPAGE="https://ece.uwaterloo.ca/~aplevich/Circuit_macros/"
58 SRC_URI="http://mirrors.ctan.org/graphics/circuit_macros.zip -> circuit_macros-${PV}.zip"
59
60 LICENSE="LPPL-1.3c"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="doc examples +script"
64
65 DEPEND=""
66 RDEPEND="|| ( app-text/texlive[graphics] app-text/texlive[pstricks] )
67 media-gfx/dpic
68 sys-devel/m4
69 script? ( app-text/texlive[graphics]
70 dev-texlive/texlive-latexextra )"
71
72 S="${WORKDIR}/${PN}"
73
74 src_compile() {
75 :
76 }
77
78 src_install() {
79 insinto /usr/share/${PN}
80 doins *.m4
81 insinto /usr/share/texmf-site/tex/latex/${PN}
82 doins boxdims.sty
83 dodoc README CHANGES Makefile doc/CMman.pdf
84 rm -f doc/CMman.pdf
85 use doc && dodoc -r doc
86 use examples && dodoc -r examples
87 use script && dobin "${FILESDIR}/CM2pdf"
88 docompress -x \
89 /usr/share/doc/${PF}/Makefile \
90 /usr/share/doc/${PF}/doc \
91 /usr/share/doc/${PF}/examples
92 }
93
94 pkg_postinst() {
95 etexmf-update
96 use script && einfo "CM2pdf was installed to automatically create PDFs"
97 }
98
99 pkg_postrm() {
100 etexmf-update
101 }