diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2020-10-03 16:02:55 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2020-10-03 16:41:51 +0200 |
commit | ccd9aba5fa87ccc8fbc8e028bc7e31694119dced (patch) | |
tree | c83f800a65329b4363d1def232a9ea9d83be8166 /games-misc/xcowsay/xcowsay-1.5.1.ebuild | |
parent | app-benchmarks/geekbench: bump to version 5.2.4 (diff) | |
download | gentoo-ccd9aba5fa87ccc8fbc8e028bc7e31694119dced.tar.gz gentoo-ccd9aba5fa87ccc8fbc8e028bc7e31694119dced.tar.bz2 gentoo-ccd9aba5fa87ccc8fbc8e028bc7e31694119dced.zip |
games-misc/xcowsay: bump to version 1.5.1
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'games-misc/xcowsay/xcowsay-1.5.1.ebuild')
-rw-r--r-- | games-misc/xcowsay/xcowsay-1.5.1.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
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..716cc7538469 --- /dev/null +++ b/games-misc/xcowsay/xcowsay-1.5.1.ebuild @@ -0,0 +1,57 @@ +# 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" + +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[@]} +} |