blob: c4b036d5584e60d649bb3cd67ee860b729ef1fa6 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/pe-format/pe-format-2.0.3.ebuild,v 1.3 2010/10/13 20:21:51 maekke Exp $
inherit toolchain-funcs
DESCRIPTION="Intelligent PE executable wrapper for binfmt_misc"
HOMEPAGE="http://github.com/mgorny/pe-format2/"
SRC_URI="http://github.com/downloads/mgorny/${PN}2/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="!sys-apps/pe-format2"
src_compile() {
tc-export CC
emake || die
}
src_install() {
emake ginstall || die
}
|