diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-06-04 06:38:44 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-06-04 06:38:44 +0000 |
commit | e3f9059e8108c67de346cf1eeee68c7e9a736825 (patch) | |
tree | ce251723362a851c20e9eeead5a23d751bd9fc89 /net-misc/tightvnc | |
parent | Fixed some incompatiblities with the ebuild and shell script (diff) | |
download | gentoo-2-e3f9059e8108c67de346cf1eeee68c7e9a736825.tar.gz gentoo-2-e3f9059e8108c67de346cf1eeee68c7e9a736825.tar.bz2 gentoo-2-e3f9059e8108c67de346cf1eeee68c7e9a736825.zip |
Fixed installation procedure. Fixes #3337
Diffstat (limited to 'net-misc/tightvnc')
-rw-r--r-- | net-misc/tightvnc/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/tightvnc/tightvnc-1.2.3-r1.ebuild | 6 |
2 files changed, 11 insertions, 3 deletions
diff --git a/net-misc/tightvnc/ChangeLog b/net-misc/tightvnc/ChangeLog index 314e89cdf5ec..e9c6da5d0ff7 100644 --- a/net-misc/tightvnc/ChangeLog +++ b/net-misc/tightvnc/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/tightvnc # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/ChangeLog,v 1.3 2002/03/28 05:59:02 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/ChangeLog,v 1.4 2002/06/04 06:38:44 rphillips Exp $ + +*tightvnc-1.2.3-r1 (3 June 2002) + + 3 June 2002; Ryan Phillips <rphillips@gentoo.org> tightvnc-1.2.3-r1.ebuild : + + Fixed installation procedure. Fixes #3337 *tightvnc-1.2.3-r1 (27 Mar 2002) diff --git a/net-misc/tightvnc/tightvnc-1.2.3-r1.ebuild b/net-misc/tightvnc/tightvnc-1.2.3-r1.ebuild index 753f2b9ef253..0361ceaebabe 100644 --- a/net-misc/tightvnc/tightvnc-1.2.3-r1.ebuild +++ b/net-misc/tightvnc/tightvnc-1.2.3-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # Author Bart Verwilst <verwilst@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/tightvnc-1.2.3-r1.ebuild,v 1.2 2002/05/27 17:27:39 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/tightvnc/tightvnc-1.2.3-r1.ebuild,v 1.3 2002/06/04 06:38:44 rphillips Exp $ S="${WORKDIR}/vnc_unixsrc" DESCRIPTION="A great client/server software package allowing remote network access to graphical desktops." @@ -29,7 +29,9 @@ src_compile() { src_install() { cd ${S} + mkdir -p ${D}/usr/man + mkdir -p ${D}/usr/man/man1 mkdir -p ${D}/usr/bin - ./vncinstall ${D}/usr/bin || die + ./vncinstall ${D}/usr/bin ${D}/usr/man || die } |