diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-03-15 15:03:59 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-03-15 15:03:59 +0000 |
commit | e25d633271ca3d78905dc1e963fc82a664f20ff2 (patch) | |
tree | 2a39faa462df2eb99a2a9d3db7810a31d1890777 /net-misc | |
parent | removed style=builder (diff) | |
download | gentoo-2-e25d633271ca3d78905dc1e963fc82a664f20ff2.tar.gz gentoo-2-e25d633271ca3d78905dc1e963fc82a664f20ff2.tar.bz2 gentoo-2-e25d633271ca3d78905dc1e963fc82a664f20ff2.zip |
Version bumped to 1.4.0 and marked ~arch for each architecture.
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/rdesktop/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/rdesktop/files/digest-rdesktop-1.4.0 | 1 | ||||
-rw-r--r-- | net-misc/rdesktop/rdesktop-1.4.0.ebuild | 44 |
3 files changed, 52 insertions, 1 deletions
diff --git a/net-misc/rdesktop/ChangeLog b/net-misc/rdesktop/ChangeLog index 2a8d10ab276f..ec66cd5ba80a 100644 --- a/net-misc/rdesktop/ChangeLog +++ b/net-misc/rdesktop/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/rdesktop # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/rdesktop/ChangeLog,v 1.47 2005/01/20 11:36:55 gongloo Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/rdesktop/ChangeLog,v 1.48 2005/03/15 15:03:59 wolf31o2 Exp $ + +*rdesktop-1.4.0 (15 Mar 2005) + + 15 Mar 2005; Chris Gianelloni <wolf31o2@gentoo.org> + +rdesktop-1.4.0.ebuild: + Version bumped to 1.4.0 and marked ~arch for each architecture. 20 Jan 2005; <gongloo@gentoo.org> rdesktop-1.3.1-r1.ebuild: Stable on ppc-macos. diff --git a/net-misc/rdesktop/files/digest-rdesktop-1.4.0 b/net-misc/rdesktop/files/digest-rdesktop-1.4.0 new file mode 100644 index 000000000000..4e7f7c523112 --- /dev/null +++ b/net-misc/rdesktop/files/digest-rdesktop-1.4.0 @@ -0,0 +1 @@ +MD5 542cb9d9b4dd1ecaf3ed4ff753fea7b8 rdesktop-1.4.0.tar.gz 202531 diff --git a/net-misc/rdesktop/rdesktop-1.4.0.ebuild b/net-misc/rdesktop/rdesktop-1.4.0.ebuild new file mode 100644 index 000000000000..39d4619517cd --- /dev/null +++ b/net-misc/rdesktop/rdesktop-1.4.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/rdesktop/rdesktop-1.4.0.ebuild,v 1.1 2005/03/15 15:03:59 wolf31o2 Exp $ + +inherit eutils + +DESCRIPTION="A Remote Desktop Protocol Client" +HOMEPAGE="http://rdesktop.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~ia64 ~ppc64 ~amd64 ~ppc-macos" +IUSE="ssl debug ipv6 oss" + +DEPEND="virtual/x11 + ssl? ( >=dev-libs/openssl-0.9.6b )" + +src_compile() { + local myconf + if use ssl + then + myconf="--with-openssl=/usr" + else + myconf="--without-openssl" + fi + + sed -i -e '/-O2/c\' -e 'cflags="$cflags ${CFLAGS}"' configure + + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + `use_with debug` \ + `use_with ipv6` \ + `use_with oss sound` \ + ${myconf} || die + + emake || die +} + +src_install() { + make DESTDIR=${D} install + dodoc COPYING doc/HACKING doc/TODO doc/keymapping.txt +} |