Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-misc/multisort: ChangeLog multisort-1.1-r1.ebuild multisort-1.1.ebuild
Date: Fri, 30 Nov 2012 18:23:49
Message-Id: 20121130182338.25A2E20C65@flycatcher.gentoo.org
1 pinkbyte 12/11/30 18:23:38
2
3 Modified: ChangeLog
4 Added: multisort-1.1-r1.ebuild
5 Removed: multisort-1.1.ebuild
6 Log:
7 Revision bump: EAPI 4, add ~amd64 keyword, respect LDFLAGS wrt bug #337359, drop old revision
8
9 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
10
11 Revision Changes Path
12 1.4 www-misc/multisort/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/multisort/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/multisort/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/multisort/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/www-misc/multisort/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 27 Nov 2012 18:45:52 -0000 1.3
25 +++ ChangeLog 30 Nov 2012 18:23:37 -0000 1.4
26 @@ -1,6 +1,13 @@
27 # ChangeLog for www-misc/multisort
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/www-misc/multisort/ChangeLog,v 1.3 2012/11/27 18:45:52 pacho Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/www-misc/multisort/ChangeLog,v 1.4 2012/11/30 18:23:37 pinkbyte Exp $
31 +
32 +*multisort-1.1-r1 (30 Nov 2012)
33 +
34 + 30 Nov 2012; Sergey Popov <pinkbyte@g.o> -multisort-1.1.ebuild,
35 + +multisort-1.1-r1.ebuild:
36 + Revision bump: EAPI 4, add ~amd64 keyword, respect LDFLAGS wrt bug #337359,
37 + drop old revision
38
39 27 Nov 2012; Pacho Ramos <pacho@g.o> metadata.xml:
40 Drop apache herd as discussed in http://www.gossamer-
41
42
43
44 1.1 www-misc/multisort/multisort-1.1-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/multisort/multisort-1.1-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-misc/multisort/multisort-1.1-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: multisort-1.1-r1.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/www-misc/multisort/multisort-1.1-r1.ebuild,v 1.1 2012/11/30 18:23:37 pinkbyte Exp $
54
55 EAPI=4
56
57 inherit toolchain-funcs
58
59 DESCRIPTION="multisort takes any number of httpd logfiles in the Common Log Format and merges them together"
60 HOMEPAGE="http://www.xach.com/multisort/"
61 SRC_URI="http://www.xach.com/${PN}/${PN}-${PV}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE=""
67
68 DEPEND=""
69
70 src_prepare() {
71 # respect LDFLAGS wrt bug #337359
72 sed -i -e 's/$(CFLAGS)/& \$(LDFLAGS)/' Makefile || die 'sed on Makefile failed'
73 }
74
75 src_compile() {
76 emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
77 }
78
79 src_install() {
80 dosbin multisort
81 }