29 lines
771 B
Bash
29 lines
771 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-misc/toilet/toilet-0.3.ebuild,v 1.5 2015/03/22 22:34:30 nimiux Exp $
|
|
|
|
EAPI=4
|
|
|
|
DESCRIPTION="The Other Implementations letters. Figlet replacement"
|
|
HOMEPAGE="http://caca.zoy.org/wiki/toilet"
|
|
SRC_URI="http://caca.zoy.org/raw-attachment/wiki/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="WTFPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=media-libs/libcaca-0.99_beta18"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
src_prepare() {
|
|
sed -i \
|
|
-e 's:-g -O2 -fno-strength-reduce -fomit-frame-pointer::' \
|
|
configure || die
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install
|
|
dodoc ChangeLog NEWS README TODO
|
|
}
|