Gentoo Archives: gentoo-commits

From: "Maxim Koltsov (maksbotan)" <maksbotan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/stow: stow-2.2.0-r1.ebuild ChangeLog
Date: Wed, 26 Mar 2014 16:03:25
Message-Id: 20140326160319.52D022004F@flycatcher.gentoo.org
1 maksbotan 14/03/26 16:03:19
2
3 Modified: ChangeLog
4 Added: stow-2.2.0-r1.ebuild
5 Log:
6 Add MANPATH to /etc/env.d/99stow, bug #505322. Thanks to Erik Falor.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key F8DBDADE)
9
10 Revision Changes Path
11 1.22 app-admin/stow/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/stow/ChangeLog?rev=1.22&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/stow/ChangeLog?rev=1.22&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/stow/ChangeLog?r1=1.21&r2=1.22
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-admin/stow/ChangeLog,v
20 retrieving revision 1.21
21 retrieving revision 1.22
22 diff -u -r1.21 -r1.22
23 --- ChangeLog 4 May 2012 02:41:16 -0000 1.21
24 +++ ChangeLog 26 Mar 2014 16:03:19 -0000 1.22
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-admin/stow
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-admin/stow/ChangeLog,v 1.21 2012/05/04 02:41:16 mr_bones_ Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-admin/stow/ChangeLog,v 1.22 2014/03/26 16:03:19 maksbotan Exp $
31 +
32 +*stow-2.2.0-r1 (26 Mar 2014)
33 +
34 + 26 Mar 2014; Maxim Koltsov <maksbotan@g.o> +stow-2.2.0-r1.ebuild,
35 + files/99stow:
36 + Add MANPATH to /etc/env.d/99stow, bug #505322. Thanks to Erik Falor.
37
38 04 May 2012; Michael Sterrett <mr_bones_@g.o> stow-2.2.0.ebuild:
39 add missing test to IUSE
40
41
42
43 1.1 app-admin/stow/stow-2.2.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/stow/stow-2.2.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/stow/stow-2.2.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: stow-2.2.0-r1.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-admin/stow/stow-2.2.0-r1.ebuild,v 1.1 2014/03/26 16:03:19 maksbotan Exp $
53
54 EAPI="2"
55
56 DESCRIPTION="Manage installation of software in /var/lib/"
57 HOMEPAGE="http://www.gnu.org/software/stow/"
58 SRC_URI="mirror://gnu/stow/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos"
63 IUSE="test"
64
65 DEPEND="dev-lang/perl
66 test? (
67 virtual/perl-Test-Harness
68 dev-perl/Test-Output
69 )"
70 RDEPEND="dev-lang/perl"
71
72 src_install() {
73 emake DESTDIR="${D}" install || die "emake install failed."
74
75 # create new STOWDIR
76 dodir /var/lib/stow
77
78 # install env.d file to add STOWDIR to PATH and LDPATH
79 doenvd "${FILESDIR}"/99stow || die "doenvd failed"
80 }
81
82 pkg_postinst() {
83 elog "We now recommend that you use /var/lib/stow as your STOWDIR"
84 elog "instead of /usr/local in order to avoid conflicts with the"
85 elog "symlink from /usr/lib64 -> /usr/lib. See Bug 246264 for"
86 elog "more details on this change."
87 elog "For your convenience, PATH has been updated to include"
88 elog "/var/lib/stow/bin."
89 }