summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Hill <dirtyepic@gentoo.org>2011-06-16 05:34:13 +0000
committerRyan Hill <dirtyepic@gentoo.org>2011-06-16 05:34:13 +0000
commit81cee9d4177e3d42a0f2cf3d091037b21032bbae (patch)
treebe5019b2798c3b2fc7134ec293b75d7b8085b1fa /app-doc/abs-guide
parentDrop block_other_slots() call, the function was removed (diff)
downloadgentoo-2-81cee9d4177e3d42a0f2cf3d091037b21032bbae.tar.gz
gentoo-2-81cee9d4177e3d42a0f2cf3d091037b21032bbae.tar.bz2
gentoo-2-81cee9d4177e3d42a0f2cf3d091037b21032bbae.zip
Version bump (bug #369441 by Sebastián Magrí).
(Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
Diffstat (limited to 'app-doc/abs-guide')
-rw-r--r--app-doc/abs-guide/ChangeLog8
-rw-r--r--app-doc/abs-guide/abs-guide-6.3.ebuild (renamed from app-doc/abs-guide/abs-guide-6.1.ebuild)15
2 files changed, 13 insertions, 10 deletions
diff --git a/app-doc/abs-guide/ChangeLog b/app-doc/abs-guide/ChangeLog
index 3dcb2f1bc441..50f5d528497c 100644
--- a/app-doc/abs-guide/ChangeLog
+++ b/app-doc/abs-guide/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-doc/abs-guide
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/ChangeLog,v 1.82 2011/01/23 06:53:14 dirtyepic Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/ChangeLog,v 1.83 2011/06/16 05:34:13 dirtyepic Exp $
+
+*abs-guide-6.3 (16 Jun 2011)
+
+ 16 Jun 2011; Ryan Hill <dirtyepic@gentoo.org> -abs-guide-6.1.ebuild,
+ +abs-guide-6.3.ebuild:
+ Version bump (bug #369441 by Sebastián Magrí).
23 Jan 2011; Ryan Hill <dirtyepic@gentoo.org> abs-guide-6.2.ebuild:
Stabilize for all.
diff --git a/app-doc/abs-guide/abs-guide-6.1.ebuild b/app-doc/abs-guide/abs-guide-6.3.ebuild
index 5de99d34878f..b90ec4a88c9f 100644
--- a/app-doc/abs-guide/abs-guide-6.1.ebuild
+++ b/app-doc/abs-guide/abs-guide-6.3.ebuild
@@ -1,23 +1,22 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/abs-guide-6.1.ebuild,v 1.2 2009/11/08 02:44:16 dirtyepic Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/abs-guide-6.3.ebuild,v 1.1 2011/06/16 05:34:13 dirtyepic Exp $
-KEYWORDS="alpha amd64 hppa ~mips ppc sparc x86"
+EAPI="4"
DESCRIPTION="An advanced reference and a tutorial on bash shell scripting"
HOMEPAGE="http://www.tldp.org/LDP/abs/html"
# Upstream likes to update the tarball without changing the name.
# - fetch http://bash.webofcrafts.net/abs-guide-latest.tar.bz2
-# rename to abs-guide-${PV}.tar.bz2
# - fetch http://bash.webofcrafts.net/abs-guide.pdf
-# rename to abs-guide-${PV}.pdf
SRC_URI="mirror://gentoo/${P}.tar.bz2
pdf? ( mirror://gentoo/${P}.pdf )"
LICENSE="OPL"
IUSE="pdf"
SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
DEPEND=""
RDEPEND=""
@@ -27,11 +26,9 @@ S="${WORKDIR}/abs"
src_unpack() {
unpack ${P}.tar.bz2
use pdf && cp "${DISTDIR}"/${P}.pdf "${S}"
- cd "${S}"
}
src_install() {
- dodir /usr/share/doc/${P} || die "dodir failed"
- cp -R * "${D}"/usr/share/doc/${P} || die "cp failed"
- use pdf && { cp ${P}.pdf "${D}"/usr/share/doc/${P} || die "pdf failed"; }
+ dodoc -r *
+ docompress -x /usr/share/doc/${PF}
}