blob: 93ec7ed124860e381ea5283d286af0bdf7540498 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# 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.5.ebuild,v 1.9 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 sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
IUSE="kernel_linux"
RDEPEND="dev-libs/icu
dev-libs/popt
>=sys-libs/ncurses-5.7-r7
kernel_linux? ( sys-apps/util-linux )" # libuuid
DEPEND="${RDEPEND}
virtual/pkgconfig"
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) $($(tc-getPKG_CONFIG) --variable=CXXFLAGS icu-io icu-uc) ${CXXFLAGS}" #439696
}
#src_test() {
# ./gdisk_test.sh || die
#}
src_install() {
local app
for app in gdisk sgdisk cgdisk fixparts; do
dosbin ${app}
doman ${app}.8
done
dodoc NEWS README
}
|