diff options
author | Stuart Herbert <stuart@gentoo.org> | 2003-08-27 03:07:10 +0000 |
---|---|---|
committer | Stuart Herbert <stuart@gentoo.org> | 2003-08-27 03:07:10 +0000 |
commit | 0808c9799d10b901fef90790bc63d6b74fb8f536 (patch) | |
tree | 0455293d0f95be07cf31c94617b15a760dc7ce2c /net-misc/nxcomp | |
parent | Initial import (diff) | |
download | gentoo-2-0808c9799d10b901fef90790bc63d6b74fb8f536.tar.gz gentoo-2-0808c9799d10b901fef90790bc63d6b74fb8f536.tar.bz2 gentoo-2-0808c9799d10b901fef90790bc63d6b74fb8f536.zip |
Initial import
Diffstat (limited to 'net-misc/nxcomp')
-rw-r--r-- | net-misc/nxcomp/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/nxcomp/Manifest | 3 | ||||
-rw-r--r-- | net-misc/nxcomp/files/digest-nxcomp-1.2.2 | 1 | ||||
-rw-r--r-- | net-misc/nxcomp/nxcomp-1.2.2.ebuild | 31 |
4 files changed, 43 insertions, 1 deletions
diff --git a/net-misc/nxcomp/ChangeLog b/net-misc/nxcomp/ChangeLog new file mode 100644 index 000000000000..29fd0dcecea5 --- /dev/null +++ b/net-misc/nxcomp/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for net-misc/nxcomp +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/nxcomp/ChangeLog,v 1.1 2003/08/27 03:02:39 stuart Exp $ + +*nxcomp-1.2.2 (27 Aug 2003) + + 27 Aug 2003; stuart nxcomp-1.2.2.ebuild: + Initial import + diff --git a/net-misc/nxcomp/Manifest b/net-misc/nxcomp/Manifest index 4230a4010f5d..4a0a3b43631e 100644 --- a/net-misc/nxcomp/Manifest +++ b/net-misc/nxcomp/Manifest @@ -1,2 +1,3 @@ -MD5 8685035385a0ed461a84915342adc210 nxcomp-1.2.2.ebuild 546 +MD5 e93de8ad54b28bd8aa1dffd39b670f59 nxcomp-1.2.2.ebuild 762 +MD5 5341213499b1bded384b6ccf62daab9a ChangeLog 302 MD5 b7ad142d655c6e9ae50d78bf227a1248 files/digest-nxcomp-1.2.2 67 diff --git a/net-misc/nxcomp/files/digest-nxcomp-1.2.2 b/net-misc/nxcomp/files/digest-nxcomp-1.2.2 new file mode 100644 index 000000000000..5b0d12a684aa --- /dev/null +++ b/net-misc/nxcomp/files/digest-nxcomp-1.2.2 @@ -0,0 +1 @@ +MD5 b27d13ede847884b571f27b4cd1c6b21 nxcomp-1.2.2-55.tar.gz 402433 diff --git a/net-misc/nxcomp/nxcomp-1.2.2.ebuild b/net-misc/nxcomp/nxcomp-1.2.2.ebuild new file mode 100644 index 000000000000..d2ff9ed5e2dd --- /dev/null +++ b/net-misc/nxcomp/nxcomp-1.2.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/nxcomp/nxcomp-1.2.2.ebuild,v 1.1 2003/08/27 03:02:39 stuart Exp $ + +MY_P="${P}-55" +DESCRIPTION="X11 protocol compression library" +HOMEPAGE="http://www.nomachine.com/" +SRC_URI="http://www.nomachine.com/download/nxsources/nxcomp/${MY_P}.tar.gz" +LICENSE="nxcomp" +SLOT="0" +KEYWORDS="~x86" +DEPEND="" +# Run-time dependencies, same as DEPEND if RDEPEND isn't defined: +#RDEPEND="" + +S=${WORKDIR}/${PN} + +src_compile() { + ./configure + emake || die "compile problem" +} + +src_install() { + insinto /usr/NX/lib + dolib libXcomp.so.1.2.2 + + dodoc README README-IPAQ LICENSE VERSION + + insinto /usr/NX/include + doins NX.h +} |