blob: ec8a863bb917bb6a1b5c12787de4c7ee824cb4da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-nntp/bnr2/bnr2-0.14.7.ebuild,v 1.9 2010/01/17 21:32:05 ssuominen Exp $
DESCRIPTION="A great newsreader for alt.binaries.*"
HOMEPAGE="http://www.bnr2.org/"
SRC_URI="http://www.bnr2.org/BNR2beta-${PV}.tgz
http://www.bnr2.org/libborqt-6.9.0-qt2.3.so.tgz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="amd64? ( app-emulation/emul-linux-x86-baselibs )
x86? ( <media-libs/jpeg-7
x11-libs/libXext
x11-libs/libSM )"
DEPEND=""
S=${WORKDIR}/BNR2
src_install() {
dodir /opt/bnr2
cp -R * "${D}"/opt/bnr2/
rm "${D}"/opt/bnr2/bin/bnr2
dobin "${FILESDIR}"/bnr2
dodir /usr/share/doc
mv "${D}"/opt/bnr2/docs "${D}"/usr/share/doc/${PF}
}
|