Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 10304 - New ebuild tsclient-0.32 <Linux Terminal Server Client.>
Summary: New ebuild tsclient-0.32 <Linux Terminal Server Client.>
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High enhancement (vote)
Assignee: Brad Cowan (RETIRED)
URL:
Whiteboard:
Keywords:
: 10303 (view as bug list)
Depends on:
Blocks:
 
Reported: 2002-11-05 17:28 UTC by Jelle Kalf
Modified: 2002-11-06 03:12 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jelle Kalf 2002-11-05 17:28:02 UTC
This is a new Linux Terminal Server Client ebuild.
With this, you have a very good GTK frontend for rdesktop AND vnc.
this program allows you to use both to connect to a remote desktop either using
rdesktop or VNC, which are already into the mainstream of portage.

I'm handing over the portage file. I think it should be placed near rdesktop in
net-misc. Current version is tsclient-0.32-r1.ebuild on my desktop. When I have
further enhancements I'll supply via this tracker :)

-------------------------------------------------------------

# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# Written by: J.R. Kalf - <jelle AT kalf DOTTIE org>


S=${WORKDIR}/${P}
DESCRIPTION="a Linux Terminal Server Client <GTK+> Frontend for rdesktop"
HOMEPAGE="http://www.gnomepro.com/tsclient/"
SRC_URI="${HOMEPAGE}/tsclient-0.32.tar.gz"

KEYWORDS="x86 ppc sparc sparc64"
DEPEND="x11-base/xfree
        rdesktop? ( >=net-misc/rdesktop-1.1.0 )
        net-misc/vnc
        dev-libs/glib ( >=dev-libs/glib-2.0.0 )
        x11-libs/gtk+ ( >=x11-libs/gtk+-2.0.0 )"

LICENSE="GPL-2"
SLOT="0"

src_compile() {
    local myconf
    [ "${DEBUG}" ] && myconf="${myconf} --with-debug"
    ./configure \
        --prefix=/usr \
        --mandir=/usr/share/man $myconf || die
    # Hold on tight folks, this ain't purdy
    if [ ! z "${CXXFLAGS}" ]; then
        sed -e 's/-O2//g' Makefile > Makefile.tmp && mv Makefile.tmp Makefile
        echo "CFLAGS += ${CXXFLAGS}" >> Makeconf
    fi
    emake || die "compile problem"
}

src_install () {
    einstall
}
Comment 1 SpanKY gentoo-dev 2002-11-05 17:37:20 UTC
*** Bug 10303 has been marked as a duplicate of this bug. ***
Comment 2 Brad Cowan (RETIRED) gentoo-dev 2002-11-06 02:21:13 UTC
just seen your contribution, should already be in portage :) thanks
Comment 3 Jelle Kalf 2002-11-06 03:12:13 UTC
Thanks for the rappid implementation, when is it going to be unmasked ?