diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-07-01 19:10:05 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-07-01 19:10:05 +0000 |
commit | 56a7597e5dd929a7dd8c41217a110843fcb1a050 (patch) | |
tree | 76f67afc5f0a3b57343cb8e16f96c31ff4f16ccd /x11-libs/xview/xview-3.2-r6.ebuild | |
parent | dev-dotnet/monodevelop: version bump -> 0.14 (fixing bugs #132457, #168208) (diff) | |
download | gentoo-2-56a7597e5dd929a7dd8c41217a110843fcb1a050.tar.gz gentoo-2-56a7597e5dd929a7dd8c41217a110843fcb1a050.tar.bz2 gentoo-2-56a7597e5dd929a7dd8c41217a110843fcb1a050.zip |
Revision bump to fix building when /usr/X11R6 is missing, see bug #149712 and the long list of dupes.
(Portage version: 2.1.3_rc6)
Diffstat (limited to 'x11-libs/xview/xview-3.2-r6.ebuild')
-rw-r--r-- | x11-libs/xview/xview-3.2-r6.ebuild | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/x11-libs/xview/xview-3.2-r6.ebuild b/x11-libs/xview/xview-3.2-r6.ebuild new file mode 100644 index 000000000000..91ead6123b17 --- /dev/null +++ b/x11-libs/xview/xview-3.2-r6.ebuild @@ -0,0 +1,102 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/xview/xview-3.2-r6.ebuild,v 1.3 2007/07/01 19:10:05 flameeyes Exp $ + +inherit eutils + +MY_PN="${P}p1.4-18c" +GCC_PATCHVER="0.1" + +DESCRIPTION="The X Window-System-based Visual/Integrated Environment for Workstations" +HOMEPAGE="http://physionet.caregroup.harvard.edu/physiotools/xview/" +LICENSE="sun-openlook" +# 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://physionet.caregroup.harvard.edu/physiotools/xview/${MY_PN}.tar.gz + mirror://gentoo/${P}-gcc-4.1-v${GCC_PATCHVER}.patch.bz2" + # mirror://debian/pool/main/x/xview/${SRC_PATCH}.gz + +SLOT="0" +IUSE="" +KEYWORDS="-alpha -amd64 ~ppc ~sparc ~x86" + +RDEPEND="x11-libs/libXpm + x11-proto/xextproto + media-fonts/font-bh-75dpi + media-fonts/font-sun-misc" + +DEPEND="${RDEPEND} + app-text/rman + x11-misc/gccmakedep + x11-misc/imake" + +S="${WORKDIR}/${MY_PN}" + +src_unpack() { + unpack ${A} + cd "${S}" + # This is our compound patch derived from debian. We use it because: + # * xview is a contribution made by 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="${PN}_3.2p1.4-16woody2.diff" + epatch "${FILESDIR}"/CAN-2005-0076.patch + epatch "${FILESDIR}"/lseek.diff + epatch "${DISTDIR}"/${P}-gcc-4.1-v${GCC_PATCHVER}.patch.bz2 + + # Do not build xgettext and msgfmt since they are provided by the gettext + # package. Using the programs provided by xview breaks many packages + # including vim, grep and binutils. + sed -e 's/MSG_UTIL = xgettext msgfmt/#MSG_UTIL = xgettext msgfmt/' \ + -i util/Imakefile || die "gettext sed failed" + + # (#120910) Look for imake in the right place + sed -i -e 's:\/X11::' imake || die "imake sed failed" + + sed -i -e 's:/usr/X11R6:/usr:' "${S}"/config/XView.cf "${S}"/Build-LinuxXView.bash +} + +src_compile() { + # Create the makefile + imake -DUseInstalled -I"${S}"/config -I/usr/$(get_libdir)/X11/config \ + || die "imake failed" + + export OPENWINHOME="/usr" + export X11DIR="/usr" + + # This is crazy and I know it, but wait till you read the code in + # Build-LinuxXView.bash. + bash Build-LinuxXView.bash libs \ + || die "building libs failed" + bash Build-LinuxXView.bash clients \ + || die "building clients failed" + bash Build-LinuxXView.bash contrib \ + || die "building contrib failed" + bash Build-LinuxXView.bash olvwm \ + || die "building olvwm failed" +} + +src_install() { + export OPENWINHOME="/usr" + export X11DIR="/usr" + export DESTDIR="${D}" + + bash Build-LinuxXView.bash instlibs \ + || die "installing libs failed" + bash Build-LinuxXView.bash instclients \ + || die "installing clients failed" + bash Build-LinuxXView.bash instcontrib \ + || die "installing contrib failed" + bash Build-LinuxXView.bash instolvwm \ + || die "installing olvwm failed" + cd "${D}"/usr + + # 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 + rm -rf "${D}"/usr/X11R6/share/doc/xview && rm -rf "${D}"/usr/X11R6/share/doc +} |