diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2010-02-27 23:25:29 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2010-02-27 23:25:29 +0000 |
commit | 69463eb24846f8b26026582a00c37a55352305f9 (patch) | |
tree | 1dd377417c7fc4c67bf66bb23949e5bb6ebf1eba /sys-apps | |
parent | old (diff) | |
download | gentoo-2-69463eb24846f8b26026582a00c37a55352305f9.tar.gz gentoo-2-69463eb24846f8b26026582a00c37a55352305f9.tar.bz2 gentoo-2-69463eb24846f8b26026582a00c37a55352305f9.zip |
[sys-apps/gdisk] Version bump. Fix bug #306777
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/gdisk/ChangeLog | 10 | ||||
-rw-r--r-- | sys-apps/gdisk/gdisk-0.5.1.ebuild | 24 | ||||
-rw-r--r-- | sys-apps/gdisk/gdisk-0.6.4_p2.ebuild | 28 |
3 files changed, 36 insertions, 26 deletions
diff --git a/sys-apps/gdisk/ChangeLog b/sys-apps/gdisk/ChangeLog index 59eaabbe7906..0809a0ad3b29 100644 --- a/sys-apps/gdisk/ChangeLog +++ b/sys-apps/gdisk/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/gdisk -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gdisk/ChangeLog,v 1.2 2009/12/06 22:40:24 alexxy Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gdisk/ChangeLog,v 1.3 2010/02/27 23:25:29 alexxy Exp $ + +*gdisk-0.6.4_p2 (27 Feb 2010) + + 27 Feb 2010; Alexey Shvetsov <alexxy@gentoo.org> -gdisk-0.5.1.ebuild, + +gdisk-0.6.4_p2.ebuild: + Version bump. Fix bug #306777 *gdisk-0.5.1 (06 Dec 2009) diff --git a/sys-apps/gdisk/gdisk-0.5.1.ebuild b/sys-apps/gdisk/gdisk-0.5.1.ebuild deleted file mode 100644 index 6ec387d24cff..000000000000 --- a/sys-apps/gdisk/gdisk-0.5.1.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gdisk/gdisk-0.5.1.ebuild,v 1.1 2009/12/06 22:40:24 alexxy Exp $ - -EAPI="2" - -inherit eutils - -DESCRIPTION="gdisk - GPT partition table manipulator for Linux" -HOMEPAGE="http://www.rodsbooks.com/gdisk/" -SRC_URI="mirror://sourceforge/gptfdisk/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="" - -src_install() -{ - dosbin gdisk || die - doman gdisk.8 || die -} diff --git a/sys-apps/gdisk/gdisk-0.6.4_p2.ebuild b/sys-apps/gdisk/gdisk-0.6.4_p2.ebuild new file mode 100644 index 000000000000..3c464ae301bd --- /dev/null +++ b/sys-apps/gdisk/gdisk-0.6.4_p2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gdisk/gdisk-0.6.4_p2.ebuild,v 1.1 2010/02/27 23:25:29 alexxy Exp $ + +EAPI="2" + +inherit eutils + +DESCRIPTION="gdisk - GPT partition table manipulator for Linux" +HOMEPAGE="http://www.rodsbooks.com/gdisk/" +SRC_URI="mirror://sourceforge/gptfdisk/${P/_p/-}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="" + +S="${WORKDIR}/${P/_p2/}" + +src_install() +{ + for x in gdisk sgdisk; do + dosbin "${x}" || die + doman "${x}.8" || die + done +} |