diff options
author | Raúl Porcel <armin76@gentoo.org> | 2008-09-24 18:31:28 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2008-09-24 18:31:28 +0000 |
commit | 457ed74eafc6c34fe70a7b0c45e63504f2b17838 (patch) | |
tree | 548a766f2864149048c497c56424641efa5720d5 /net-misc/tightvnc | |
parent | Version bump (diff) | |
download | gentoo-2-457ed74eafc6c34fe70a7b0c45e63504f2b17838.tar.gz gentoo-2-457ed74eafc6c34fe70a7b0c45e63504f2b17838.tar.bz2 gentoo-2-457ed74eafc6c34fe70a7b0c45e63504f2b17838.zip |
Add a patch from Debian to make it work on arm, keyword ~arm
(Portage version: 2.2_rc9/cvs/Linux 2.6.25-gentoo-r7 i686)
Diffstat (limited to 'net-misc/tightvnc')
-rw-r--r-- | net-misc/tightvnc/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/tightvnc/files/1.3.9-arm.patch | 12 | ||||
-rw-r--r-- | net-misc/tightvnc/tightvnc-1.3.9-r2.ebuild | 11 |
3 files changed, 24 insertions, 5 deletions
diff --git a/net-misc/tightvnc/ChangeLog b/net-misc/tightvnc/ChangeLog index 4accdd2ef4a4..2b8ff339d15b 100644 --- a/net-misc/tightvnc/ChangeLog +++ b/net-misc/tightvnc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-misc/tightvnc # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/ChangeLog,v 1.123 2008/09/11 11:14:57 ali_bush Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/ChangeLog,v 1.124 2008/09/24 18:31:28 armin76 Exp $ + + 24 Sep 2008; Raúl Porcel <armin76@gentoo.org> +files/1.3.9-arm.patch, + tightvnc-1.3.9-r2.ebuild: + Add a patch from Debian to make it work on arm, keyword ~arm *tightvnc-1.3.9-r2 (11 Sep 2008) diff --git a/net-misc/tightvnc/files/1.3.9-arm.patch b/net-misc/tightvnc/files/1.3.9-arm.patch new file mode 100644 index 000000000000..a238e29379c6 --- /dev/null +++ b/net-misc/tightvnc/files/1.3.9-arm.patch @@ -0,0 +1,12 @@ +diff -ur vnc_unixsrc.orig/Xvnc/config/cf/Imake.cf vnc_unixsrc/Xvnc/config/cf/Imake.cf +--- vnc_unixsrc.orig/Xvnc/config/cf/Imake.cf 2008-09-24 18:50:40.000000000 +0200 ++++ vnc_unixsrc/Xvnc/config/cf/Imake.cf 2008-09-24 18:51:37.000000000 +0200 +@@ -711,7 +711,7 @@ + # undef __alpha__ + # endif /* __alpha__ */ + # ifdef __arm__ +-# define Arm32Architecture ++# define ArmArchitecture + # undef arm + # undef __arm + # undef __arm__ diff --git a/net-misc/tightvnc/tightvnc-1.3.9-r2.ebuild b/net-misc/tightvnc/tightvnc-1.3.9-r2.ebuild index a0227d9a38e3..42395613af49 100644 --- a/net-misc/tightvnc/tightvnc-1.3.9-r2.ebuild +++ b/net-misc/tightvnc/tightvnc-1.3.9-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/tightvnc-1.3.9-r2.ebuild,v 1.1 2008/09/11 11:14:57 ali_bush Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/tightvnc-1.3.9-r2.ebuild,v 1.2 2008/09/24 18:31:28 armin76 Exp $ inherit eutils toolchain-funcs java-pkg-opt-2 @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/vnc-tight/${P}_unixsrc.tar.bz2 java? ( mirror://sourceforge/vnc-tight/${P}_javasrc.tar.gz )" HOMEPAGE="http://www.tightvnc.com/" -KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86 ~x86-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~sparc ~x86 ~x86-fbsd" LICENSE="GPL-2" SLOT="0" @@ -58,14 +58,17 @@ src_unpack() { epause 5 fi - unpack ${A} && cd "${S}" + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PN}-1.3.8-pathfixes.patch" # fixes bug 78385 and 146099 epatch "${FILESDIR}/${PN}-1.3.8-imake-tmpdir.patch" # fixes bug 23483 epatch "${FILESDIR}/${PN}-1.3.8-darwin.patch" # fixes bug 89908 - use mips && epatch "${FILESDIR}/${PN}-1.3.8-mips.patch" + epatch "${FILESDIR}/${PN}-1.3.8-mips.patch" epatch "${FILESDIR}"/server-CVE-2007-1003.patch epatch "${FILESDIR}"/server-CVE-2007-1351-1352.patch epatch "${FILESDIR}"/${PV}-fbsd.patch + epatch "${FILESDIR}"/${PV}-arm.patch if use java; then cd "${WORKDIR}" |