Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/xdms/
Date: Wed, 29 Jun 2016 17:33:05
Message-Id: 1467221561.1e3f09e05fd96cf49f3cffe816fcb94b2a912703.kensington@gentoo
1 commit: 1e3f09e05fd96cf49f3cffe816fcb94b2a912703
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 17:32:20 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 17:32:41 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e3f09e0
7
8 app-arch/xdms: revision bump to avoid calling prepalldocs
9
10 Gentoo-bug: 587256
11
12 Package-Manager: portage-2.3.0
13
14 app-arch/xdms/xdms-1.3.2-r1.ebuild | 32 ++++++++++++++++++++++++++++++++
15 1 file changed, 32 insertions(+)
16
17 diff --git a/app-arch/xdms/xdms-1.3.2-r1.ebuild b/app-arch/xdms/xdms-1.3.2-r1.ebuild
18 new file mode 100644
19 index 0000000..86711fc
20 --- /dev/null
21 +++ b/app-arch/xdms/xdms-1.3.2-r1.ebuild
22 @@ -0,0 +1,32 @@
23 +# Copyright 1999-2016 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +# $Id$
26 +
27 +EAPI=6
28 +
29 +inherit toolchain-funcs
30 +
31 +DESCRIPTION="xDMS - Amiga DMS disk image decompressor"
32 +HOMEPAGE="http://zakalwe.fi/~shd/foss/xdms"
33 +SRC_URI="http://zakalwe.fi/~shd/foss/xdms/${P}.tar.bz2"
34 +
35 +LICENSE="public-domain"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~hppa ~ppc ~x86"
38 +IUSE=""
39 +
40 +pkg_setup() {
41 + tc-export CC
42 +}
43 +
44 +src_prepare() {
45 + default
46 + sed -i Makefile.in \
47 + -e "s:COPYING::" \
48 + -e "s:share/doc/xdms-{VERSION}:share/doc/xdms-${PF}:" || die
49 + sed -i -e "s:-O2::" src/Makefile.in || die
50 +}
51 +
52 +src_configure() {
53 + ./configure --prefix=/usr --package-prefix="${D}" || die
54 +}