Gentoo Archives: gentoo-commits

From: "Ryan Hill (dirtyepic)" <dirtyepic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-doc/abs-guide: ChangeLog abs-guide-6.1.ebuild
Date: Wed, 30 Sep 2009 06:08:32
Message-Id: E1MssMV-0003ag-QD@stork.gentoo.org
1 dirtyepic 09/09/30 06:08:27
2
3 Modified: ChangeLog
4 Added: abs-guide-6.1.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc42/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.77 app-doc/abs-guide/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-doc/abs-guide/ChangeLog?rev=1.77&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-doc/abs-guide/ChangeLog?rev=1.77&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-doc/abs-guide/ChangeLog?r1=1.76&r2=1.77
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-doc/abs-guide/ChangeLog,v
19 retrieving revision 1.76
20 retrieving revision 1.77
21 diff -u -r1.76 -r1.77
22 --- ChangeLog 27 Sep 2009 20:03:15 -0000 1.76
23 +++ ChangeLog 30 Sep 2009 06:08:27 -0000 1.77
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-doc/abs-guide
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/ChangeLog,v 1.76 2009/09/27 20:03:15 nixnut Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/ChangeLog,v 1.77 2009/09/30 06:08:27 dirtyepic Exp $
29 +
30 +*abs-guide-6.1 (30 Sep 2009)
31 +
32 + 30 Sep 2009; Ryan Hill <dirtyepic@g.o> +abs-guide-6.1.ebuild:
33 + Version bump.
34
35 27 Sep 2009; nixnut <nixnut@g.o> abs-guide-6.0.ebuild:
36 ppc stable #286602
37
38
39
40 1.1 app-doc/abs-guide/abs-guide-6.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-doc/abs-guide/abs-guide-6.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-doc/abs-guide/abs-guide-6.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: abs-guide-6.1.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/abs-guide-6.1.ebuild,v 1.1 2009/09/30 06:08:27 dirtyepic Exp $
50
51 KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
52
53 DESCRIPTION="An advanced reference and a tutorial on bash shell scripting"
54 HOMEPAGE="http://www.tldp.org/LDP/abs/html"
55
56 # Upstream likes to update the tarball without changing the name.
57 # - fetch http://bash.webofcrafts.net/abs-guide-latest.tar.bz2
58 # rename to abs-guide-${PV}.tar.bz2
59 # - fetch http://bash.webofcrafts.net/abs-guide.pdf
60 # rename to abs-guide-${PV}.pdf
61 SRC_URI="mirror://gentoo/${P}.tar.bz2
62 pdf? ( mirror://gentoo/${P}.pdf )"
63
64 LICENSE="OPL"
65 IUSE="pdf"
66 SLOT="0"
67
68 DEPEND=""
69 RDEPEND=""
70
71 S="${WORKDIR}/abs"
72
73 src_unpack() {
74 unpack ${P}.tar.bz2
75 use pdf && cp "${DISTDIR}"/${P}.pdf "${S}"
76 cd "${S}"
77 }
78
79 src_install() {
80 dodir /usr/share/doc/${P} || die "dodir failed"
81 cp -R * "${D}"/usr/share/doc/${P} || die "cp failed"
82 use pdf && { cp ${P}.pdf "${D}"/usr/share/doc/${P} || die "pdf failed"; }
83 }