net-misc/nxcompext: Initial checkin

git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@2257 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
geos_one
2010-06-14 21:28:26 +00:00
parent b5b8cce95c
commit d0177bce30
7 changed files with 181 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
MY_P=${P/_p/-}
MY_PV=${PV/_p*/}
inherit autotools eutils multilib
DESCRIPTION="NX compression technology core libraries"
HOMEPAGE="http://www.nomachine.com/developers.php"
SRC_URI="http://web04.nomachine.com/download/${MY_PV}/sources/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="x11-libs/libXau
x11-libs/libXcomposite
x11-libs/libXdamage
x11-libs/libXdmcp
x11-libs/libXpm
x11-libs/libXrandr
x11-libs/libXtst
>=media-libs/jpeg-6b-r4
>=media-libs/libpng-1.2.8
>=sys-libs/zlib-1.2.3
!<=net-misc/nx-${MY_PV}
>=net-misc/nxcomp-${MY_PV}"
DEPEND="${RDEPEND}"
S=${WORKDIR}/nxcompext
src_prepare() {
# Respect CFLAGS/CXXFLAGS
epatch "${FILESDIR}"/nxcompext-3.4.0-cflags.patch
# Use System nxcomp
epatch "${FILESDIR}"/nxcompext-3.4.0-no-local-nxcomp.patch
# IOError
epatch "${FILESDIR}"/nxcompext-3.4.0-NXlib-xgetioerror.patch
# Run autoreconf in all neeed folders
eautoreconf
}
src_install() {
# Install Libs
dolib libXcompext.a
dolib.so libXcompext.so*
# Install Header
insinto /usr/include/nx
doins NX*.h
}