diff options
author | 2003-02-28 03:02:26 +0000 | |
---|---|---|
committer | 2003-02-28 03:02:26 +0000 | |
commit | 61b6c24152b70aa3347c06109307c23a836eb357 (patch) | |
tree | 9ea61accfa501036ecc0fc7cf92911295f10c472 /net-misc/rdesktop | |
parent | forgot depmod (diff) | |
download | historical-61b6c24152b70aa3347c06109307c23a836eb357.tar.gz historical-61b6c24152b70aa3347c06109307c23a836eb357.tar.bz2 historical-61b6c24152b70aa3347c06109307c23a836eb357.zip |
version bump
Diffstat (limited to 'net-misc/rdesktop')
-rw-r--r-- | net-misc/rdesktop/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/rdesktop/files/digest-rdesktop-1.2.0 | 1 | ||||
-rw-r--r-- | net-misc/rdesktop/rdesktop-1.2.0.ebuild | 46 |
3 files changed, 55 insertions, 1 deletions
diff --git a/net-misc/rdesktop/ChangeLog b/net-misc/rdesktop/ChangeLog index 92cf921ee11f..f8b2e602f566 100644 --- a/net-misc/rdesktop/ChangeLog +++ b/net-misc/rdesktop/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-misc/rdesktop # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/rdesktop/ChangeLog,v 1.14 2003/02/12 08:31:34 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/rdesktop/ChangeLog,v 1.15 2003/02/28 03:02:26 bcowan Exp $ + +*rdesktop-1.2.0 (27 Feb 2003) + + 27 Feb 2003; Brad Cowan <bcowan@gentoo.org> rdesktop-1.2.0.ebuild, + files/digest-rdesktop-1.2.0 : + + Version bump. *rdesktop-1.2_beta1-r1 (28 Dec 2002) diff --git a/net-misc/rdesktop/files/digest-rdesktop-1.2.0 b/net-misc/rdesktop/files/digest-rdesktop-1.2.0 new file mode 100644 index 000000000000..514ca21fb75d --- /dev/null +++ b/net-misc/rdesktop/files/digest-rdesktop-1.2.0 @@ -0,0 +1 @@ +MD5 b5e108e83e9de883e965a2bb0c7e7036 rdesktop-1.2.0.tar.gz 125674 diff --git a/net-misc/rdesktop/rdesktop-1.2.0.ebuild b/net-misc/rdesktop/rdesktop-1.2.0.ebuild new file mode 100644 index 000000000000..423b9c0e0b7a --- /dev/null +++ b/net-misc/rdesktop/rdesktop-1.2.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/rdesktop/rdesktop-1.2.0.ebuild,v 1.1 2003/02/28 03:02:26 bcowan Exp $ + +IUSE="ssl" + +S=${WORKDIR}/${P} + +DESCRIPTION="A Remote Desktop Protocol Client" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +HOMEPAGE="http://rdesktop.sourceforge.net/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~alpha ~sparc" + +DEPEND="x11-base/xfree + ssl? ( >=dev-libs/openssl-0.9.6b )" + +src_compile() { + local myconf + + use ssl \ + && myconf="--with-openssl=/usr/include/openssl" \ + || myconf="--without-openssl" + + [ "${DEBUG}" ] && myconf="${myconf} --with-debug" + + sed -e "s:-O2:${CFLAGS}:g" Makefile > Makefile.tmp + mv Makefile.tmp Makefile + echo "CFLAGS += ${CXXFLAGS}" >> Makeconf + + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --sharedir=/usr/share/${PN} \ + ${myconf} || die + + emake || die +} + +src_install () { + make DESTDIR=${D} install + + dodoc COPYING doc/HACKING doc/TODO doc/keymapping.txt +} |