From d934827bf44b7cfcf6711964418148fa60877668 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 25 Nov 2020 22:39:15 +0000 Subject: gentoo resync : 25.11.2020 --- games-misc/xcowsay/xcowsay-1.5.1.ebuild | 58 +++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 games-misc/xcowsay/xcowsay-1.5.1.ebuild (limited to 'games-misc/xcowsay/xcowsay-1.5.1.ebuild') diff --git a/games-misc/xcowsay/xcowsay-1.5.1.ebuild b/games-misc/xcowsay/xcowsay-1.5.1.ebuild new file mode 100644 index 000000000000..53da3b690e10 --- /dev/null +++ b/games-misc/xcowsay/xcowsay-1.5.1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PV="r${PV}" + +inherit autotools + +DESCRIPTION="Displays a cute cow and message on your desktop" +HOMEPAGE=" + https://github.com/nickg/xcowsay + https://www.doof.me.uk/xcowsay/ +" +SRC_URI="https://github.com/nickg/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-${MY_PV}" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="dbus fortune nls" +RESTRICT="test" + +RDEPEND=" + dev-libs/glib:2 + x11-libs/cairo + x11-libs/gtk+:3 + x11-libs/pango + dbus? ( dev-libs/dbus-glib ) + fortune? ( games-misc/fortune-mod ) +" + +DEPEND="${RDEPEND}" + +BDEPEND=" + sys-devel/gettext + virtual/pkgconfig +" + +src_prepare() { + default + + if ! use fortune; then + sed -e 's/xcowfortune//g' -i src/Makefile.am || die + fi + + eautoreconf +} + +src_configure() { + local myeconfargs=( + --disable-rpath + $(use_enable dbus) + $(use_enable nls) + ) + + econf ${myeconfargs[@]} +} -- cgit v1.2.3