Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xmbdfed: xmbdfed-4.7_p1-r1.ebuild ChangeLog
Date: Thu, 01 Jan 2009 01:33:52
Message-Id: E1LICRa-0008Fc-3s@stork.gentoo.org
1 matsuu 09/01/01 01:33:50
2
3 Modified: ChangeLog
4 Added: xmbdfed-4.7_p1-r1.ebuild
5 Log:
6 Added ~amd64. Fixed dependency. Added RESTRICT="test"
7 (Portage version: 2.1.6.4/cvs/Linux 2.6.28-gentoo x86_64)
8
9 Revision Changes Path
10 1.20 x11-misc/xmbdfed/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xmbdfed/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xmbdfed/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xmbdfed/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xmbdfed/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 15 Dec 2008 22:54:27 -0000 1.19
23 +++ ChangeLog 1 Jan 2009 01:33:50 -0000 1.20
24 @@ -1,6 +1,12 @@
25 # ChangeLog for x11-misc/xmbdfed
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xmbdfed/ChangeLog,v 1.19 2008/12/15 22:54:27 pva Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xmbdfed/ChangeLog,v 1.20 2009/01/01 01:33:50 matsuu Exp $
30 +
31 +*xmbdfed-4.7_p1-r1 (01 Jan 2009)
32 +
33 + 01 Jan 2009; MATSUU Takuto <matsuu@g.o>
34 + +files/xmbdfed-4.7_p1-gentoo.patch, +xmbdfed-4.7_p1-r1.ebuild:
35 + Added ~amd64. Fixed dependency. Added RESTRICT="test".
36
37 15 Dec 2008; Peter Volkov <pva@g.o> xmbdfed-4.7_p1.ebuild:
38 Truetype support is not optional any more in this package thus removed
39
40
41
42 1.1 x11-misc/xmbdfed/xmbdfed-4.7_p1-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xmbdfed/xmbdfed-4.7_p1-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xmbdfed/xmbdfed-4.7_p1-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xmbdfed-4.7_p1-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xmbdfed/xmbdfed-4.7_p1-r1.ebuild,v 1.1 2009/01/01 01:33:50 matsuu Exp $
52
53 inherit eutils multilib toolchain-funcs
54
55 MY_P="${P/_p*}"
56 DESCRIPTION="BDF font editor for X"
57 SRC_URI="http://clr.nmsu.edu/~mleisher/${MY_P}.tar.bz2
58 http://clr.nmsu.edu/~mleisher/${P/_p/-patch}"
59 HOMEPAGE="http://clr.nmsu.edu/~mleisher/xmbdfed.html"
60
61 SLOT="0"
62 LICENSE="as-is"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE=""
65
66 RESTRICT="test"
67
68 DEPEND=">=x11-libs/openmotif-2.3.0-r1
69 media-libs/freetype"
70 RDEPEND="${DEPEND}
71 media-fonts/font-adobe-75dpi
72 media-fonts/font-alias
73 media-fonts/font-misc-misc"
74
75 S="${WORKDIR}/${MY_P}"
76
77 src_unpack() {
78 unpack ${A}
79 cd "${S}"
80 epatch "${DISTDIR}/${P/_p/-patch}"
81 epatch "${FILESDIR}/${P}-gcc4.patch"
82 epatch "${FILESDIR}/${P}-gentoo.patch"
83 sed -i -e "/^LIBS/s:/usr/lib:/usr/$(get_libdir):" Makefile || die
84 }
85
86 src_compile() {
87 emake CC="$(tc-getCC)" || die
88 }
89
90 src_install() {
91 dobin xmbdfed || die
92 newman xmbdfed.man xmbdfed.1
93 dodoc CHANGES README xmbdfedrc
94 }