Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-arch/gzip: ChangeLog gzip-1.3.13.ebuild
Date: Tue, 06 Oct 2009 21:20:18
Message-Id: E1MvHSA-0004z0-Ka@stork.gentoo.org
1 vapier 09/10/06 21:20:14
2
3 Modified: ChangeLog
4 Added: gzip-1.3.13.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc42/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.101 app-arch/gzip/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/gzip/ChangeLog?rev=1.101&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/gzip/ChangeLog?rev=1.101&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/gzip/ChangeLog?r1=1.100&r2=1.101
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-arch/gzip/ChangeLog,v
19 retrieving revision 1.100
20 retrieving revision 1.101
21 diff -u -r1.100 -r1.101
22 --- ChangeLog 29 Mar 2008 12:29:42 -0000 1.100
23 +++ ChangeLog 6 Oct 2009 21:20:14 -0000 1.101
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-arch/gzip
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-arch/gzip/ChangeLog,v 1.100 2008/03/29 12:29:42 coldwind Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-arch/gzip/ChangeLog,v 1.101 2009/10/06 21:20:14 vapier Exp $
30 +
31 +*gzip-1.3.13 (06 Oct 2009)
32 +
33 + 06 Oct 2009; Mike Frysinger <vapier@g.o> +gzip-1.3.13.ebuild:
34 + Version bump.
35
36 29 Mar 2008; Santiago M. Mola <coldwind@g.o> gzip-1.3.12-r1.ebuild:
37 amd64 stable wrt bug #214963
38
39
40
41 1.1 app-arch/gzip/gzip-1.3.13.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/gzip/gzip-1.3.13.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/gzip/gzip-1.3.13.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gzip-1.3.13.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-arch/gzip/gzip-1.3.13.ebuild,v 1.1 2009/10/06 21:20:14 vapier Exp $
51
52 inherit eutils flag-o-matic
53
54 DESCRIPTION="Standard GNU compressor"
55 HOMEPAGE="http://www.gnu.org/software/gzip/"
56 SRC_URI="ftp://alpha.gnu.org/gnu/gzip/${P}.tar.gz
57 mirror://gnu/gzip/${P}.tar.gz
58 mirror://gentoo/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
63 IUSE="nls static pic"
64
65 RDEPEND=""
66 DEPEND="${RDEPEND}
67 nls? ( sys-devel/gettext )"
68 PROVIDE="virtual/gzip"
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73 #epatch "${FILESDIR}"/${PN}-1.3.5-rsync.patch
74 epatch "${FILESDIR}"/${PN}-1.3.8-install-symlinks.patch
75 }
76
77 src_compile() {
78 use static && append-flags -static
79 # avoid text relocation in gzip
80 use pic && export DEFS="NO_ASM"
81 econf || die
82 emake || die
83 }
84
85 src_install() {
86 emake install DESTDIR="${D}" || die
87 dodoc ChangeLog NEWS README THANKS TODO
88 docinto txt
89 dodoc algorithm.doc gzip.doc
90
91 # keep most things in /usr, just the fun stuff in /
92 dodir /bin
93 mv "${D}"/usr/bin/{gunzip,gzip,uncompress,zcat} "${D}"/bin/ || die
94 sed -e 's:/usr::' -i "${D}"/bin/gunzip || die
95 }