34 lines
953 B
Bash
34 lines
953 B
Bash
# 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-r1.ebuild,v 1.8 2012/12/31 09:19:28 ago Exp $
|
|
|
|
inherit eutils autotools
|
|
|
|
DESCRIPTION="blackbox date display"
|
|
HOMEPAGE="http://sourceforge.net/projects/bbtools"
|
|
SRC_URI="mirror://sourceforge/bbtools/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc sparc x86 ~x86-fbsd"
|
|
IUSE=""
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
epatch "${FILESDIR}"/${P}-as-needed.patch
|
|
sed -i \
|
|
-e 's|-helvetica-|-*-|g' \
|
|
resource.cc data/${PN}.{nobb,style} || die
|
|
eautoreconf
|
|
}
|
|
|
|
src_install () {
|
|
emake DESTDIR="${D}" install || die "emake 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
|
|
}
|