blob: 3fdfb7a4d70c357d28cad0962e8961c4e2f69de8 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/bbdate/bbdate-0.2.4.ebuild,v 1.12 2012/11/25 09:50:59 xarthisius Exp $
DESCRIPTION="blackbox date display"
HOMEPAGE="http://bbtools.windsofstorm.net/available.phtml"
SRC_URI="http://bbtools.windsofstorm.net/sources/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc sparc x86 ~x86-fbsd"
IUSE=""
DEPEND=""
RDEPEND="media-fonts/font-adobe-100dpi"
src_install () {
make DESTDIR="${D}" install || die "make install failed"
dodoc README AUTHORS BUGS INSTALL ChangeLog TODO
# since multiple bbtools packages provide this file, install
# it in /usr/share/doc/${PF}
mv "${D}"/usr/share/bbtools/bbtoolsrc.in \
"${D}"/usr/share/doc/${PF}/bbtoolsrc.example
}
|