Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/figlet: figlet-2.2.5.ebuild ChangeLog
Date: Tue, 08 Jul 2014 03:30:43
Message-Id: 20140708033039.39DC72004E@flycatcher.gentoo.org
1 mr_bones_ 14/07/08 03:30:39
2
3 Modified: ChangeLog
4 Added: figlet-2.2.5.ebuild
5 Log:
6 version bump (version numbering change per upstream) with ebuild submitted by Matthias Maier via bug #427700
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.40 app-misc/figlet/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/figlet/ChangeLog?rev=1.40&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/figlet/ChangeLog?rev=1.40&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/figlet/ChangeLog?r1=1.39&r2=1.40
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-misc/figlet/ChangeLog,v
20 retrieving revision 1.39
21 retrieving revision 1.40
22 diff -u -r1.39 -r1.40
23 --- ChangeLog 28 Jul 2013 12:03:22 -0000 1.39
24 +++ ChangeLog 8 Jul 2014 03:30:39 -0000 1.40
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-misc/figlet
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-misc/figlet/ChangeLog,v 1.39 2013/07/28 12:03:22 grobian Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-misc/figlet/ChangeLog,v 1.40 2014/07/08 03:30:39 mr_bones_ Exp $
31 +
32 +*figlet-2.2.5 (08 Jul 2014)
33 +
34 + 08 Jul 2014; Michael Sterrett <mr_bones_@g.o> +figlet-2.2.5.ebuild:
35 + version bump (version numbering change per upstream) with ebuild submitted by
36 + Matthias Maier via bug #427700
37
38 28 Jul 2013; Fabian Groffen <grobian@g.o> figlet-222.ebuild:
39 Marked ~x64-macos, bug #416949
40
41
42
43 1.1 app-misc/figlet/figlet-2.2.5.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/figlet/figlet-2.2.5.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/figlet/figlet-2.2.5.ebuild?rev=1.1&content-type=text/plain
47
48 Index: figlet-2.2.5.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-misc/figlet/figlet-2.2.5.ebuild,v 1.1 2014/07/08 03:30:38 mr_bones_ Exp $
53
54 EAPI=5
55 inherit eutils bash-completion-r1 toolchain-funcs
56
57 DESCRIPTION="program for making large letters out of ordinary text"
58 HOMEPAGE="http://www.figlet.org/"
59 SRC_URI="ftp://ftp.figlet.org/pub/figlet/program/unix/${P}.tar.gz"
60
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
64 IUSE=""
65
66 src_compile() {
67 emake clean
68 emake \
69 CC="$(tc-getCC)" \
70 LD="$(tc-getCC)" \
71 CFLAGS="${CFLAGS}" \
72 LDFLAGS="${LDFLAGS}" \
73 prefix="${EPREFIX}/usr" \
74 all
75 }
76
77 src_install() {
78 emake \
79 DESTDIR="${ED}" \
80 BINDIR="${EPREFIX}/usr/bin" \
81 MANDIR="${EPREFIX}/usr/share/man" \
82 prefix="${EPREFIX}/usr" \
83 install
84
85 doman chkfont.6 figlet.6 figlist.6 showfigfonts.6
86 dodoc README figfont.txt
87
88 dobashcomp "${FILESDIR}"/figlet.bashcomp
89 }