diff options
author | Zac Medico <zmedico@gentoo.org> | 2013-02-16 09:50:14 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2013-02-16 09:50:14 +0000 |
commit | 21587f5b4b03c7e00e41479684ca35fa8ff68301 (patch) | |
tree | f690881bcb7d364931e5d151cd8f1d2b571076bb /net-misc/tightvnc | |
parent | Fix for prefix and add ~x86-linux keyword. (diff) | |
download | gentoo-2-21587f5b4b03c7e00e41479684ca35fa8ff68301.tar.gz gentoo-2-21587f5b4b03c7e00e41479684ca35fa8ff68301.tar.bz2 gentoo-2-21587f5b4b03c7e00e41479684ca35fa8ff68301.zip |
Split out src_prepare from src_unpack.
(Portage version: 2.2.0_alpha163/cvs/Linux i686, RepoMan options: --force, signed Manifest commit with key 0xFDE8EF85AE5719A3)
Diffstat (limited to 'net-misc/tightvnc')
-rw-r--r-- | net-misc/tightvnc/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/tightvnc/tightvnc-1.3.10-r1.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/net-misc/tightvnc/ChangeLog b/net-misc/tightvnc/ChangeLog index 2fb0225a3f1f..b7c236589dfa 100644 --- a/net-misc/tightvnc/ChangeLog +++ b/net-misc/tightvnc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/tightvnc # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/ChangeLog,v 1.150 2013/02/16 05:26:05 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/ChangeLog,v 1.151 2013/02/16 09:50:14 zmedico Exp $ + + 16 Feb 2013; Zac Medico <zmedico@gentoo.org> tightvnc-1.3.10-r1.ebuild: + Split out src_prepare from src_unpack. 16 Feb 2013; Zac Medico <zmedico@gentoo.org> tightvnc-1.3.10-r1.ebuild: Fix for prefix and add ~x86-linux keyword. diff --git a/net-misc/tightvnc/tightvnc-1.3.10-r1.ebuild b/net-misc/tightvnc/tightvnc-1.3.10-r1.ebuild index e4ec1d27afa2..2051dd1e0f63 100644 --- a/net-misc/tightvnc/tightvnc-1.3.10-r1.ebuild +++ b/net-misc/tightvnc/tightvnc-1.3.10-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/tightvnc-1.3.10-r1.ebuild,v 1.14 2013/02/16 09:45:08 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/tightvnc-1.3.10-r1.ebuild,v 1.15 2013/02/16 09:50:14 zmedico Exp $ EAPI=3 inherit eutils toolchain-funcs java-pkg-opt-2 @@ -61,8 +61,9 @@ src_unpack() { fi unpack ${A} - cd "${S}" +} +src_prepare() { epatch "${FILESDIR}/${PN}-1.3.10-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 @@ -74,7 +75,6 @@ src_unpack() { epatch "${FILESDIR}"/1.3.9-sh.patch epatch "${FILESDIR}"/${PV}-sparc.patch sed -e "s:\\(/etc/\\|/usr/share/\\):${EPREFIX}\\1:g" -i vncserver || die - if use java; then cd "${WORKDIR}" |