summaryrefslogtreecommitdiff
path: root/rdesktop
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2004-11-19 09:24:14 +0000
committerMichael Lauer <mickey@vanille-media.de>2004-11-19 09:24:14 +0000
commit2507b57f8a9f5092e4e8628c32e30b98cd7fc767 (patch)
tree3dafb4d3e55dfec688d9d670c00cb5ce2447397e /rdesktop
parent6abc41d412f0a48a91079bc2ba38ed626b74e718 (diff)
Merge bk://openembedded@openembedded.bkbits.net/packages-devel
into r2d2.tm.informatik.uni-frankfurt.de:/local/pkg/oe/packages 2004/11/19 00:53:13+01:00 uni-frankfurt.de!mickeyl oz-3.5.2: final cvsdate bump before the code goes gold. GPE folks: Please adjust the fixed GPE versions as needed _before_ weekend. 2004/11/18 23:26:00+01:00 uni-frankfurt.de!mickeyl fix section to something more common for rdesktop* 2004/11/18 23:24:27+01:00 uni-frankfurt.de!mickeyl Merge bk://openembedded@openembedded.bkbits.net/packages-devel into r2d2.tm.informatik.uni-frankfurt.de:/local/pkg/oe/packages 2004/11/18 23:24:03+01:00 uni-frankfurt.de!mickeyl the most recent lirc now works again. disable PREFERRED_PROVIDER in oz.conf BKrev: 419dbbbelZjDCJE55rmTaYXlroJ28Q
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}/.. "
+