diff options
author | Michał Górny <mgorny@gentoo.org> | 2010-11-27 23:49:49 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2010-11-27 23:49:49 +0000 |
commit | 26b52dff822e829716a68d09f7a9b74f6f117d81 (patch) | |
tree | 955390721f6e2dc441f9b9c7bc5bd809ebc5e615 /dev-dotnet | |
parent | Revbump to optionally include identation patch (diff) | |
download | gentoo-2-26b52dff822e829716a68d09f7a9b74f6f117d81.tar.gz gentoo-2-26b52dff822e829716a68d09f7a9b74f6f117d81.tar.bz2 gentoo-2-26b52dff822e829716a68d09f7a9b74f6f117d81.zip |
Version bump. The new version uses autotools, and adds support for 64-bit Windows executables (for use with wine64).
(Portage version: 2.2.0_alpha4_p39/cvs/Linux x86_64)
Diffstat (limited to 'dev-dotnet')
-rw-r--r-- | dev-dotnet/pe-format/ChangeLog | 8 | ||||
-rw-r--r-- | dev-dotnet/pe-format/pe-format-2.0.4.ebuild | 21 |
2 files changed, 28 insertions, 1 deletions
diff --git a/dev-dotnet/pe-format/ChangeLog b/dev-dotnet/pe-format/ChangeLog index 1377f94d648c..e3568d26252b 100644 --- a/dev-dotnet/pe-format/ChangeLog +++ b/dev-dotnet/pe-format/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-dotnet/pe-format # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/pe-format/ChangeLog,v 1.22 2010/10/31 17:15:17 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/pe-format/ChangeLog,v 1.23 2010/11/27 23:49:49 mgorny Exp $ + +*pe-format-2.0.4 (27 Nov 2010) + + 27 Nov 2010; Michał Górny <mgorny@gentoo.org> +pe-format-2.0.4.ebuild: + Version bump. The new version uses autotools, and adds support for 64-bit + Windows executables (for use with wine64). 31 Oct 2010; Raúl Porcel <armin76@gentoo.org> pe-format-1.ebuild: Drop sparc keywords diff --git a/dev-dotnet/pe-format/pe-format-2.0.4.ebuild b/dev-dotnet/pe-format/pe-format-2.0.4.ebuild new file mode 100644 index 000000000000..28eddf78ed03 --- /dev/null +++ b/dev-dotnet/pe-format/pe-format-2.0.4.ebuild @@ -0,0 +1,21 @@ +# 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.4.ebuild,v 1.1 2010/11/27 23:49:49 mgorny Exp $ + +inherit base + +DESCRIPTION="Intelligent PE executable wrapper for binfmt_misc" +HOMEPAGE="https://github.com/mgorny/pe-format2/" +SRC_URI="https://github.com/downloads/mgorny/${PN}2/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +src_install() { + base_src_install + + newinitd ${PN}.init ${PN} || die + newconfd ${PN}.conf ${PN} || die +} |