Gentoo Archives: gentoo-commits

From: "Markus Dittrich (markusle)" <markusle@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-visualization/fig2sxd: metadata.xml ChangeLog fig2sxd-0.20.ebuild
Date: Mon, 31 Aug 2009 21:23:11
Message-Id: E1MiJA7-0006o4-4h@stork.gentoo.org
1 markusle 09/09/01 02:31:59
2
3 Modified: metadata.xml ChangeLog
4 Added: fig2sxd-0.20.ebuild
5 Log:
6 Version bump. Also added patches for respecting LDFLAGS and making sure check is a phony target since it is not intended as a test file. Added myself as a maintainer.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 sci-visualization/fig2sxd/metadata.xml
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/fig2sxd/metadata.xml?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/fig2sxd/metadata.xml?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/fig2sxd/metadata.xml?r1=1.1&r2=1.2
15
16 Index: metadata.xml
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/fig2sxd/metadata.xml,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- metadata.xml 29 Jan 2006 19:35:32 -0000 1.1
23 +++ metadata.xml 1 Sep 2009 02:31:58 -0000 1.2
24 @@ -2,7 +2,4 @@
25 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
26 <pkgmetadata>
27 <herd>sci</herd>
28 -<maintainer>
29 - <email>phosphan@g.o</email>
30 -</maintainer>
31 </pkgmetadata>
32
33
34
35 1.7 sci-visualization/fig2sxd/ChangeLog
36
37 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/fig2sxd/ChangeLog?rev=1.7&view=markup
38 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/fig2sxd/ChangeLog?rev=1.7&content-type=text/plain
39 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/fig2sxd/ChangeLog?r1=1.6&r2=1.7
40
41 Index: ChangeLog
42 ===================================================================
43 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/fig2sxd/ChangeLog,v
44 retrieving revision 1.6
45 retrieving revision 1.7
46 diff -u -r1.6 -r1.7
47 --- ChangeLog 21 Aug 2008 15:07:24 -0000 1.6
48 +++ ChangeLog 1 Sep 2009 02:31:58 -0000 1.7
49 @@ -1,6 +1,15 @@
50 # ChangeLog for sci-visualization/fig2sxd
51 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
52 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/fig2sxd/ChangeLog,v 1.6 2008/08/21 15:07:24 markusle Exp $
53 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
54 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/fig2sxd/ChangeLog,v 1.7 2009/09/01 02:31:58 markusle Exp $
55 +
56 +*fig2sxd-0.20 (01 Sep 2009)
57 +
58 + 01 Sep 2009; Markus Dittrich <markusle@g.o> +fig2sxd-0.20.ebuild,
59 + +files/fig2sxd-0.20-ldflags.patch, +files/fig2sxd-0.20-phony-check.patch,
60 + metadata.xml:
61 + Version bump. Also added patches for respecting LDFLAGS and making
62 + sure check is a phony target since it is not intended as a test file.
63 + Added myself as a maintainer.
64
65 *fig2sxd-0.18 (21 Aug 2008)
66
67
68
69
70 1.1 sci-visualization/fig2sxd/fig2sxd-0.20.ebuild
71
72 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/fig2sxd/fig2sxd-0.20.ebuild?rev=1.1&view=markup
73 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/fig2sxd/fig2sxd-0.20.ebuild?rev=1.1&content-type=text/plain
74
75 Index: fig2sxd-0.20.ebuild
76 ===================================================================
77 # Copyright 1999-2009 Gentoo Foundation
78 # Distributed under the terms of the GNU General Public License v2
79 # $Header: /var/cvsroot/gentoo-x86/sci-visualization/fig2sxd/fig2sxd-0.20.ebuild,v 1.1 2009/09/01 02:31:58 markusle Exp $
80
81 EAPI="2"
82
83 inherit eutils toolchain-funcs
84
85 DESCRIPTION="A utility to convert files in xfig format to OpenOffice.org Draw format"
86 LICENSE="GPL-2"
87
88 HOMEPAGE="http://sourceforge.net/projects/fig2sxd"
89 SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}.orig.tar.gz
90 mirror://sourceforge/${PN}/${PN}_${PV}-1.diff.gz"
91
92 SLOT="0"
93
94 KEYWORDS="~amd64 ~x86"
95
96 IUSE=""
97
98 src_prepare() {
99 epatch "${WORKDIR}"/${PN}_${PV}-1.diff
100 epatch "${FILESDIR}"/${P}-ldflags.patch
101 epatch "${FILESDIR}"/${P}-phony-check.patch
102 }
103
104 src_compile() {
105 emake CXXFLAGS="${CXXFLAGS}" CXX="$(tc-getCXX)" \
106 || die "emake failed"
107 }
108
109 src_install() {
110 dobin ${PN} || die "Failed to install binary."
111 doman ${PN}.1 || die "Failed to install man page."
112 dodoc changelog || die "Failed ton install docs."
113 }