Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/dynamips: dynamips-0.2.14.ebuild ChangeLog dynamips-0.2.10.ebuild
Date: Fri, 28 Nov 2014 07:01:15
Message-Id: 20141128070111.8A188B11B@oystercatcher.gentoo.org
1 idella4 14/11/28 07:01:11
2
3 Modified: ChangeLog
4 Added: dynamips-0.2.14.ebuild
5 Removed: dynamips-0.2.10.ebuild
6 Log:
7 bump; build system has changed to cmake, patch to remove install_doc function from cmake, drop disused patch & oldest version, closes bug #527550
8
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
10
11 Revision Changes Path
12 1.16 app-emulation/dynamips/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/dynamips/ChangeLog?rev=1.16&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/dynamips/ChangeLog?rev=1.16&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/dynamips/ChangeLog?r1=1.15&r2=1.16
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-emulation/dynamips/ChangeLog,v
21 retrieving revision 1.15
22 retrieving revision 1.16
23 diff -u -r1.15 -r1.16
24 --- ChangeLog 26 Nov 2014 19:12:42 -0000 1.15
25 +++ ChangeLog 28 Nov 2014 07:01:11 -0000 1.16
26 @@ -1,6 +1,14 @@
27 # ChangeLog for app-emulation/dynamips
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/dynamips/ChangeLog,v 1.15 2014/11/26 19:12:42 pinkbyte Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/dynamips/ChangeLog,v 1.16 2014/11/28 07:01:11 idella4 Exp $
31 +
32 +*dynamips-0.2.14 (28 Nov 2014)
33 +
34 + 28 Nov 2014; Ian Delaney <idella4@g.o> +dynamips-0.2.14.ebuild,
35 + +files/0.2.14-docs.patch, -dynamips-0.2.10.ebuild,
36 + -files/dynamips-0.2.10-makefile.patch:
37 + bump; build system has changed to cmake, patch to remove install_doc function
38 + from cmake, drop disused patch & oldest version, closes bug #527550
39
40 26 Nov 2014; Sergey Popov <pinkbyte@g.o> metadata.xml:
41 Reassigning to new maintainer
42 @@ -79,4 +87,3 @@
43 Initial commit, ebuild sourced from Sunrise overlay but modified slightly.
44 With a warm thank you to Sergey Khalavchuck, Chad A. Simmons, Duncan
45 Lockwood, Mark Silinio and "haad". Closes bug #154491.
46 -
47
48
49
50 1.1 app-emulation/dynamips/dynamips-0.2.14.ebuild
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/dynamips/dynamips-0.2.14.ebuild?rev=1.1&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/dynamips/dynamips-0.2.14.ebuild?rev=1.1&content-type=text/plain
54
55 Index: dynamips-0.2.14.ebuild
56 ===================================================================
57 # Copyright 1999-2014 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 # $Header: /var/cvsroot/gentoo-x86/app-emulation/dynamips/dynamips-0.2.14.ebuild,v 1.1 2014/11/28 07:01:11 idella4 Exp $
60
61 EAPI=5
62
63 inherit cmake-utils eutils
64
65 DESCRIPTION="Cisco 7200/3600 Simulator"
66 HOMEPAGE="http://www.gns3.net/dynamips/"
67 SRC_URI="mirror://sourceforge/project/gns-3/Dynamips/${PV}/${P}-source.zip"
68
69 LICENSE="GPL-2"
70 SLOT="0"
71 KEYWORDS="~amd64 ~x86"
72
73 DEPEND="app-arch/unzip
74 dev-libs/elfutils
75 net-libs/libpcap"
76 RDEPEND="${DEPEND}"
77
78 DOCS=( ChangeLog README RELEASE-NOTES )
79
80 S="${WORKDIR}"
81
82 src_prepare() {
83 # patch CMakeLists to remove install_docs and use Portage instead
84 epatch "${FILESDIR}"/${PV}-docs.patch
85
86 # comment out DYNAMIPS_FLAGS to respect use set CFLAGS
87 sed -e 's:^set ( DYNAMIPS_FLAGS:#&:' -i cmake/dependencies.cmake || die
88 }
89
90 src_configure() {
91 cmake-utils_src_configure
92 }
93
94 src_install() {
95 cmake-utils_src_install
96 }