You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/x11-misc/bbdate/bbdate-0.2.4-r1.ebuild

34 lines
844 B

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
inherit eutils autotools
DESCRIPTION="blackbox date display"
HOMEPAGE="https://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
}