blob: 59244fcb299f61ab17a87f86aacd6df79ca3194c (
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
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
58
59
60
61
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/xview/xview-3.2.ebuild,v 1.8 2004/06/24 22:10:05 agriffis Exp $
inherit eutils
DESCRIPTION="The X Window-System-based Visual/Integrated Environment for Workstations"
HOMEPAGE="http://www.ibiblio.org/pub/Linux/libs/X/xview/"
MY_PN="${P}p1.4"
# This is our compound patch derived from debian. We use it because:
# * xview is a contribution made to Sun Microsystems (?) to the X community, but
# fixes for it don't appear to be around other than in the other free distributions.
# * It does little harm, only some defaults are changed which we can redefine anyway
SRC_PATCH="${MY_PN/-/_}-16.diff"
# We use the xview tarball available from the X organization, but xfree86 appears
# to be up and available more often so we use that (it's their primary mirror).
SRC_URI="http://www.ibiblio.org/pub/Linux/libs/X/xview/${MY_PN}.src.tar.gz
http://ftp.debian.org/pool/main/x/xview/${SRC_PATCH}.gz"
S=${WORKDIR}/${MY_PN}
LICENSE="sun-openlook"
SLOT="0"
KEYWORDS="alpha ~amd64 hppa ~ppc ~sparc x86"
IUSE=""
DEPEND="virtual/x11"
src_unpack() {
unpack $A
cd $S
epatch ../${SRC_PATCH}
}
src_compile() {
# Create the makefile
imake -DUseInstalled -I${S}/config -I/usr/X11R6/lib/X11/config
# This is crazy and I know it, but wait till you read the code in
# Build-LinuxXView.bash.
OPENWINHOME=/usr/X11R6 bash Build-LinuxXView.bash libs
OPENWINHOME=/usr/X11R6 bash Build-LinuxXView.bash clients
OPENWINHOME=/usr/X11R6 bash Build-LinuxXView.bash contrib
OPENWINHOME=/usr/X11R6 bash Build-LinuxXView.bash olvwm
}
src_install() {
DESTDIR=${D} OPENWINHOME=/usr/X11R6 bash Build-LinuxXView.bash instlibs
DESTDIR=${D} OPENWINHOME=/usr/X11R6 bash Build-LinuxXView.bash instclients
DESTDIR=${D} OPENWINHOME=/usr/X11R6 bash Build-LinuxXView.bash instcontrib
DESTDIR=${D} OPENWINHOME=/usr/X11R6 bash Build-LinuxXView.bash instolvwm
cd ${D}/usr
ln -s X11R6 openwin
# The rest of the docs is already installed
cd ${S}/doc
dodoc README xview-info olgx_api.txt olgx_api.ps sel_api.txt \
dnd_api.txt whats_new.ps bugform config/usenixws/paper.ps
rm -rf ${D}/usr/X11R6/share/doc/xview && rm -rf ${D}/usr/X11R6/share/doc
}
|