forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pdv-1.5.1-r2.ebuild
57 lines (48 loc) · 1.37 KB
/
pdv-1.5.1-r2.ebuild
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
49
50
51
52
53
54
55
56
57
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit eutils autotools toolchain-funcs
DESCRIPTION="build a self-extracting and self-installing binary package"
HOMEPAGE="http://sourceforge.net/projects/pdv"
SRC_URI="mirror://sourceforge/pdv/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~hppa ppc x86 ~x86-linux ~ppc-macos"
IUSE="X"
DEPEND="X? ( >=x11-libs/motif-2.3:0
>=x11-libs/libX11-1.0.0
>=x11-libs/libXt-1.0.0
>=x11-libs/libXext-1.0.0
>=x11-libs/libXp-1.0.0 )"
RDEPEND="${DEPEND}"
src_prepare() {
# fix a size-of-variable bug
epatch "${FILESDIR}"/${P}-opt.patch
# fix a free-before-use bug
epatch "${FILESDIR}"/${P}-early-free.patch
# fix a configure script bug
epatch "${FILESDIR}"/${P}-x-config.patch
# fix default args bug from assuming 'char' is signed
epatch "${FILESDIR}"/${P}-default-args.patch
# prevent pre-stripped binaries
epatch "${FILESDIR}"/${P}-no-strip.patch
# re-build configure script since patch was applied to configure.in
cd "${S}"/X11
eautoreconf
tc-export CC
}
src_configure() {
local myconf=""
use X || myconf="--without-x" # configure script is broken, cant use use_with
econf ${myconf}
}
src_install() {
dobin pdv pdvmkpkg
doman pdv.1 pdvmkpkg.1
if use X ; then
dobin X11/xmpdvmkpkg
doman xmpdvmkpkg.1
fi
dodoc AUTHORS ChangeLog NEWS README pdv.lsm
}