Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-electronics/oregano: oregano-0.82.ebuild ChangeLog
Date: Thu, 05 Jul 2012 08:17:06
Message-Id: 20120705081654.ACCBA2004B@flycatcher.gentoo.org
1 xmw 12/07/05 08:16:54
2
3 Modified: ChangeLog
4 Added: oregano-0.82.ebuild
5 Log:
6 Version bump (thanks euscan), EAPI-4, scons->automake, HOMEPAGE and SRC_URI relocated to github.com.
7
8 (Portage version: 2.1.11.4/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.53 sci-electronics/oregano/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/oregano/ChangeLog?rev=1.53&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/oregano/ChangeLog?rev=1.53&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/oregano/ChangeLog?r1=1.52&r2=1.53
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-electronics/oregano/ChangeLog,v
20 retrieving revision 1.52
21 retrieving revision 1.53
22 diff -u -r1.52 -r1.53
23 --- ChangeLog 4 May 2012 07:10:19 -0000 1.52
24 +++ ChangeLog 5 Jul 2012 08:16:54 -0000 1.53
25 @@ -1,6 +1,14 @@
26 # ChangeLog for sci-electronics/oregano
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/oregano/ChangeLog,v 1.52 2012/05/04 07:10:19 jdhore Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/oregano/ChangeLog,v 1.53 2012/07/05 08:16:54 xmw Exp $
30 +
31 +*oregano-0.82 (05 Jul 2012)
32 +
33 + 05 Jul 2012; Michael Weber <xmw@g.o>
34 + +files/oregano-0.82-format-security.patch,
35 + +files/oregano-0.82-remove.unneeded.docs.patch, +oregano-0.82.ebuild:
36 + Version bump (thanks euscan), EAPI-4, scons->automake, HOMEPAGE and SRC_URI
37 + relocated to github.com.
38
39 04 May 2012; Jeff Horelick <jdhore@g.o> oregano-0.69.1.ebuild,
40 oregano-0.69.1-r1.ebuild:
41
42
43
44 1.1 sci-electronics/oregano/oregano-0.82.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/oregano/oregano-0.82.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/oregano/oregano-0.82.ebuild?rev=1.1&content-type=text/plain
48
49 Index: oregano-0.82.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sci-electronics/oregano/oregano-0.82.ebuild,v 1.1 2012/07/05 08:16:54 xmw Exp $
54
55 EAPI="4"
56
57 inherit autotools eutils fdo-mime vcs-snapshot
58
59 DESCRIPTION="Oregano is an application for schematic capture and simulation of electrical circuits."
60 HOMEPAGE="https://github.com/marc-lorber/oregano"
61 SRC_URI="https://github.com/marc-lorber/${PN}/tarball/v${PV} -> ${P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~x86"
66 IUSE=""
67
68 CDEPEND="dev-libs/libxml2:2
69 x11-libs/goocanvas:2.0
70 x11-libs/gtk+:3
71 x11-libs/gtksourceview:3.0"
72 DEPEND="${CDEPEND}
73 virtual/pkgconfig"
74 RDEPEND="${CDEPEND}
75 sci-electronics/electronics-menu"
76
77 src_prepare() {
78 epatch "${FILESDIR}"/${P}-format-security.patch
79 epatch "${FILESDIR}"/${P}-remove.unneeded.docs.patch
80 eautoreconf
81 }
82
83 src_configure() {
84 econf --disable-update-mimedb
85 }
86
87 src_install() {
88 emake DESTDIR="${D}" oreganodocdir=/usr/share/doc/${PF} install
89 }
90
91 pkg_postinst() {
92 fdo-mime_desktop_database_update
93 elog "You'll need to emerge your prefered simulation backend"
94 elog "such ngspice or gnucap for simulation to work."
95 elog "As an alternative generate a netlist and use sci-electronics/spice"
96 elog "from the command line for simulation."
97 }