You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-apps/gptfdisk/gptfdisk-0.8.4.ebuild

45 lines
918 B

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/gptfdisk/gptfdisk-0.8.4.ebuild,v 1.10 2013/03/29 16:44:20 jlec Exp $
EAPI=4
inherit toolchain-funcs
DESCRIPTION="gdisk - GPT partition table manipulator for Linux"
HOMEPAGE="http://www.rodsbooks.com/gdisk/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ppc64 x86 ~amd64-linux ~x86-linux"
IUSE=""
RDEPEND="
dev-libs/icu
dev-libs/popt
sys-libs/ncurses"
DEPEND="${RDEPEND}"
src_prepare() {
sed \
-e '/g++/s:=:?=:g' \
-e "s:-lncurses:$($(tc-getPKG_CONFIG) --libs ncurses):g" \
-i Makefile || die
tc-export CXX
}
src_compile() {
emake CXX="$(tc-getCXX)"
}
src_install() {
local x
for x in gdisk sgdisk cgdisk fixparts; do
dosbin ${x}
doman ${x}.8
done
dodoc README NEWS
}