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