diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-10-11 23:27:40 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-10-11 23:27:40 +0000 |
commit | 58d928ec724fd7790ef66409e9be2dd9dad09ef1 (patch) | |
tree | 866e90c8db6c48dc92df5da9a32888b0c7c6bda3 /net-misc/rdesktop/rdesktop-1.3.1.ebuild | |
parent | stable on x86 (Manifest recommit) (diff) | |
download | gentoo-2-58d928ec724fd7790ef66409e9be2dd9dad09ef1.tar.gz gentoo-2-58d928ec724fd7790ef66409e9be2dd9dad09ef1.tar.bz2 gentoo-2-58d928ec724fd7790ef66409e9be2dd9dad09ef1.zip |
Removing old versions and patches. Stabilizing on all arches (zero bugs in 43 days) and closing bug #67174.
Diffstat (limited to 'net-misc/rdesktop/rdesktop-1.3.1.ebuild')
-rw-r--r-- | net-misc/rdesktop/rdesktop-1.3.1.ebuild | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/net-misc/rdesktop/rdesktop-1.3.1.ebuild b/net-misc/rdesktop/rdesktop-1.3.1.ebuild deleted file mode 100644 index 53b5130862ba..000000000000 --- a/net-misc/rdesktop/rdesktop-1.3.1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/rdesktop/rdesktop-1.3.1.ebuild,v 1.10 2004/07/19 02:31:32 tgall Exp $ - -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" -IUSE="ssl debug" - -DEPEND="virtual/x11 - ssl? ( >=dev-libs/openssl-0.9.6b )" - -src_unpack() { - unpack ${A} -} - -src_compile() { - local myconf - use ssl \ - && myconf="--with-openssl=/usr/include/openssl" \ - || myconf="--without-openssl" - - sed -i -e '/-O2/c\' -e 'cflags="$cflags ${CFLAGS}"' configure - - ./configure \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --sharedir=/usr/share/${PN} \ - `use_with debug` \ - ${myconf} || die - - emake || die -} - -src_install() { - make DESTDIR=${D} install - dodoc COPYING doc/HACKING doc/TODO doc/keymapping.txt -} |