summaryrefslogtreecommitdiff
path: root/rdesktop
diff options
context:
space:
mode:
Diffstat (limited to 'rdesktop')
-rw-r--r--rdesktop/rdesktop_1.3.1.oe37
-rw-r--r--rdesktop/rdesktop_cvs.oe16
2 files changed, 53 insertions, 0 deletions
diff --git a/rdesktop/rdesktop_1.3.1.oe b/rdesktop/rdesktop_1.3.1.oe
index e69de29bb2..5a0d679a74 100644
--- a/rdesktop/rdesktop_1.3.1.oe
+++ b/rdesktop/rdesktop_1.3.1.oe
@@ -0,0 +1,37 @@
+# rdesktop OE build file
+# Copyright (C) 2004, Advanced Micro Devices, Inc. All Rights Reserved
+# Released under the MIT license (see packages/COPYING)
+
+DESCRIPTION = "RDesktop is a X11 based RDP client"
+HOMEPAGE = "http://www.rdesktop.org/"
+LICENSE = "GPL"
+DEPENDS = "x11 openssl"
+RDEPENDS= "openssl"
+SECTION = "x11/network"
+
+SRC_URI="${SOURCEFORGE_MIRROR}/rdesktop/rdesktop-${PV}.tar.gz \
+ file://configure.patch;patch=1"
+
+# Note - rdesktop 1.3.1 doesn't use autotools - don't make the same
+# mistakes I did.. :)
+
+do_configure() {
+ ${S}/configure \
+ --prefix=${prefix} \
+ --exec-prefix=${exec_prefix} \
+ --bindir=${bindir} \
+ --mandir=${mandir} \
+ --sharedir=${datadir} \
+ --with-x=${STAGING_DIR}/${HOST_SYS} \
+ --with-openssl=${STAGING_DIR}/${HOST_SYS} \
+ --with-oss \
+ --without-debug
+}
+
+do_compile() {
+ oe_runmake 'KEYMAP_PATH=${datadir}/keymaps/'
+}
+
+do_install() {
+ oe_runmake DESTDIR=${D} install
+}
diff --git a/rdesktop/rdesktop_cvs.oe b/rdesktop/rdesktop_cvs.oe
index e69de29bb2..043f7e7161 100644
--- a/rdesktop/rdesktop_cvs.oe
+++ b/rdesktop/rdesktop_cvs.oe
@@ -0,0 +1,16 @@
+DESCRIPTION = "Rdesktop rdp client for X"
+DEPENDS = "x11 openssl"
+HOMEPAGE = "http://www.rdesktop.org"
+SECTION = "x11/network"
+MAINTAINER = "Adrian Davey <ade@beth2.org>
+LICENSE = "GPL"
+PV = "1.3.1cvs${CVSDATE}"
+PR = "r1"
+
+SRC_URI = "cvs://anonymous@cvs.sourceforge.net/cvsroot/rdesktop;module=rdesktop"
+S = "${WORKDIR}/rdesktop"
+
+inherit autotools
+
+EXTRA_OECONF = "--with-openssl=${STAGING_LIBDIR}/.. "
+