diff options
author | 2011-01-30 19:27:16 +0000 | |
---|---|---|
committer | 2011-01-30 19:27:16 +0000 | |
commit | 910cbe8c389983e455d7ae3578334c8b53356809 (patch) | |
tree | c36666b0d4bc7508cabf0b4a87b2edb6e43b9f82 /sys-apps | |
parent | Add urls for our mercurial sources, don't compress files, fixes bug #352764 (diff) | |
download | gentoo-2-910cbe8c389983e455d7ae3578334c8b53356809.tar.gz gentoo-2-910cbe8c389983e455d7ae3578334c8b53356809.tar.bz2 gentoo-2-910cbe8c389983e455d7ae3578334c8b53356809.zip |
[sys-apps/gdisk] Version bump per Hanno Boeck request
(Portage version: 2.2.0_alpha19_p24/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/gdisk/ChangeLog | 9 | ||||
-rw-r--r-- | sys-apps/gdisk/gdisk-0.6.14.ebuild | 31 |
2 files changed, 38 insertions, 2 deletions
diff --git a/sys-apps/gdisk/ChangeLog b/sys-apps/gdisk/ChangeLog index 3963ccaaabde..2851b35169c8 100644 --- a/sys-apps/gdisk/ChangeLog +++ b/sys-apps/gdisk/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/gdisk -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gdisk/ChangeLog,v 1.10 2010/11/28 17:09:29 phajdan.jr Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gdisk/ChangeLog,v 1.11 2011/01/30 19:27:16 alexxy Exp $ + +*gdisk-0.6.14 (30 Jan 2011) + + 30 Jan 2011; Alexey Shvetsov <alexxy@gentoo.org> +gdisk-0.6.14.ebuild: + Version bump per Hanno Boeck request 28 Nov 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> gdisk-0.6.13.ebuild: x86 stable wrt bug #343147 diff --git a/sys-apps/gdisk/gdisk-0.6.14.ebuild b/sys-apps/gdisk/gdisk-0.6.14.ebuild new file mode 100644 index 000000000000..31812e2a6169 --- /dev/null +++ b/sys-apps/gdisk/gdisk-0.6.14.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gdisk/gdisk-0.6.14.ebuild,v 1.1 2011/01/30 19:27:16 alexxy Exp $ + +EAPI="4" + +inherit eutils toolchain-funcs + +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 ~arm ~x86" +IUSE="" + +RDEPEND="" + +src_compile() { + emake CXX="$(tc-getCXX)" || die "emake failed" +} + +src_install() { + for x in gdisk sgdisk; do + dosbin "${x}" || die + doman "${x}.8" || die + dohtml "${x}.html" || die + done + dodoc README NEWS +} |