blob: d46ac1fa57069ce377d16fc8322b9e4067e3adac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2011 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.5.ebuild,v 1.6 2011/09/09 20:30:45 chainsaw Exp $
EAPI=3
inherit autotools-utils
DESCRIPTION="Intelligent PE executable wrapper for binfmt_misc"
HOMEPAGE="https://github.com/mgorny/pe-format2/"
SRC_URI="http://cloud.github.com/downloads/mgorny/${PN}2/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
src_install() {
autotools-utils_src_install
cd "${AUTOTOOLS_BUILD_DIR}" || die
newinitd ${PN}.init ${PN} || die
newconfd ${PN}.conf ${PN} || die
}
|