29 lines
705 B
Bash
29 lines
705 B
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/x11-misc/qterm/qterm-0.5.11.ebuild,v 1.2 2011/01/29 18:21:58 scarabeus Exp $
|
|
|
|
EAPI=3
|
|
inherit cmake-utils eutils
|
|
|
|
DESCRIPTION="A BBS client for Linux"
|
|
HOMEPAGE="http://www.qterm.org/"
|
|
SRC_URI="mirror://sourceforge/qterm/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc x86"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=x11-libs/qt-gui-4.5:4[qt3support]
|
|
dev-libs/openssl"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/"${PN}"-0.5.11-gentoo.patch
|
|
}
|
|
|
|
src_install() {
|
|
cmake-utils_src_install
|
|
mv "${D}"/usr/bin/qterm "${D}"/usr/bin/QTerm || die
|
|
dodoc README TODO
|
|
}
|