diff options
author | Stuart Herbert <stuart@gentoo.org> | 2003-08-27 03:07:02 +0000 |
---|---|---|
committer | Stuart Herbert <stuart@gentoo.org> | 2003-08-27 03:07:02 +0000 |
commit | 440df825fb82179a1fc29cde203267d25515c6be (patch) | |
tree | 02994ff316fb02891f910ff5fee30e9f176dcb93 /net-misc/nxproxy | |
parent | Initial import (diff) | |
download | historical-440df825fb82179a1fc29cde203267d25515c6be.tar.gz historical-440df825fb82179a1fc29cde203267d25515c6be.tar.bz2 historical-440df825fb82179a1fc29cde203267d25515c6be.zip |
Initial import
Diffstat (limited to 'net-misc/nxproxy')
-rw-r--r-- | net-misc/nxproxy/Manifest | 3 | ||||
-rw-r--r-- | net-misc/nxproxy/files/1.2.2-Makefile.in.patch | 11 | ||||
-rw-r--r-- | net-misc/nxproxy/files/digest-nxproxy-1.2.2 | 1 | ||||
-rw-r--r-- | net-misc/nxproxy/nxproxy-1.2.2.ebuild | 40 |
4 files changed, 54 insertions, 1 deletions
diff --git a/net-misc/nxproxy/Manifest b/net-misc/nxproxy/Manifest index 80b749985e36..2e3747ea53e6 100644 --- a/net-misc/nxproxy/Manifest +++ b/net-misc/nxproxy/Manifest @@ -1,3 +1,4 @@ -MD5 75830d763b3e4fe2aa19b13093d94fe9 nxproxy-1.2.2.ebuild 865 +MD5 69858474a1b2545006369398c4259c02 nxproxy-1.2.2.ebuild 965 +MD5 7e181a085509f25b220c56b34ff40017 ChangeLog 337 MD5 0738e13fa3f4d0504c8419991333f8d3 files/digest-nxproxy-1.2.2 66 MD5 d7c92d02795ad3ecf951731efaac6b03 files/1.2.2-Makefile.in.patch 421 diff --git a/net-misc/nxproxy/files/1.2.2-Makefile.in.patch b/net-misc/nxproxy/files/1.2.2-Makefile.in.patch new file mode 100644 index 000000000000..31ed82cb7cb0 --- /dev/null +++ b/net-misc/nxproxy/files/1.2.2-Makefile.in.patch @@ -0,0 +1,11 @@ +--- Makefile.in 2003-03-11 17:27:49.000000000 +0000 ++++ Makefile.in.new 2003-08-27 02:57:39.000000000 +0100 +@@ -13,7 +13,7 @@ + CXX = @CXX@ + CXXFLAGS = @CXXFLAGS@ @X_CFLAGS@ @DEFS@ \ + -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes \ +- -Wmissing-declarations -Wnested-externs ++ -Wmissing-declarations -Wnested-externs -I/usr/NX/include + + CXXINCLUDES = -I. -I../nxcomp + diff --git a/net-misc/nxproxy/files/digest-nxproxy-1.2.2 b/net-misc/nxproxy/files/digest-nxproxy-1.2.2 new file mode 100644 index 000000000000..300dfccdaa29 --- /dev/null +++ b/net-misc/nxproxy/files/digest-nxproxy-1.2.2 @@ -0,0 +1 @@ +MD5 8c75e3d71b5da8b724b24111de6099d1 nxproxy-1.2.2-5.tar.gz 24937 diff --git a/net-misc/nxproxy/nxproxy-1.2.2.ebuild b/net-misc/nxproxy/nxproxy-1.2.2.ebuild new file mode 100644 index 000000000000..cec14ae72829 --- /dev/null +++ b/net-misc/nxproxy/nxproxy-1.2.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/nxproxy/nxproxy-1.2.2.ebuild,v 1.1 2003/08/27 03:04:42 stuart Exp $ + +MY_P="${P}-5" +DESCRIPTION="X11 protocol compression library wrapper" +HOMEPAGE="http://www.nomachine.com/" +SRC_URI="http://www.nomachine.com/download/nxsources/${PN}/${MY_P}.tar.gz" +LICENSE="nxcomp" +SLOT="0" +KEYWORDS="~x86" +DEPEND=">=net-misc/nxcomp-1.2.2 + sys-devel/patch + >=media-libs/jpeg-6b-r3 + >=sys-libs/glibc-2.3.2-r1 + >=sys-libs/zlib-1.1.4-r1" + +# Run-time dependencies, same as DEPEND if RDEPEND isn't defined: +#RDEPEND="" + +S=${WORKDIR}/${PN} + +src_unpack() { + unpack ${A} + cd ${S} + patch Makefile.in < ${FILESDIR}/1.2.2-Makefile.in.patch +} + +src_compile() { + ./configure + + emake || die "compile problem" +} + +src_install() { + exeinto /usr/NX/bin + doexe nxproxy + + dodoc README README-IPAQ README-VALGRIND VERSION LICENSE +} |