diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2021-06-09 19:20:47 +0200 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2021-06-15 16:00:18 -0400 |
commit | 9e9d5a5aad9718fa268cd4e19b3a98090de33cbd (patch) | |
tree | 5d5a9ec64f38caf9c9c72234f4c27eecbff0e60f /games-board | |
parent | games-board/atakks: EAPI bump, minor improvements (diff) | |
download | gentoo-9e9d5a5aad9718fa268cd4e19b3a98090de33cbd.tar.gz gentoo-9e9d5a5aad9718fa268cd4e19b3a98090de33cbd.tar.bz2 gentoo-9e9d5a5aad9718fa268cd4e19b3a98090de33cbd.zip |
games-board/ccgo: EAPI bump, remove unused eclass
Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/ccgo/ccgo-0.3.6.5-r1.ebuild | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/games-board/ccgo/ccgo-0.3.6.5-r1.ebuild b/games-board/ccgo/ccgo-0.3.6.5-r1.ebuild index fd69f9b4f475..9530e3f901cd 100644 --- a/games-board/ccgo/ccgo-0.3.6.5-r1.ebuild +++ b/games-board/ccgo/ccgo-0.3.6.5-r1.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit autotools eutils toolchain-funcs flag-o-matic +inherit autotools flag-o-matic toolchain-funcs -DESCRIPTION="An IGS client written in C++" +DESCRIPTION="IGS client written in C++" HOMEPAGE="https://ccdw.org/~cjj/prog/ccgo/" SRC_URI="https://ccdw.org/~cjj/prog/ccgo/src/${P}.tar.gz" @@ -18,8 +18,8 @@ RDEPEND=" >=dev-cpp/gconfmm-2.6 >=dev-cpp/gtkmm-2.4:2.4 nls? ( virtual/libintl )" -DEPEND="${RDEPEND} - virtual/pkgconfig +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig nls? ( sys-devel/gettext )" PATCHES=( @@ -37,8 +37,8 @@ src_prepare() { sed -i \ -e '/^localedir/s/=.*/=@localedir@/' \ - -e '/^appicondir/s:=.*:=/usr/share/pixmaps:' \ - -e '/^desktopdir/s:=.*:=/usr/share/applications:' \ + -e "/^appicondir/s|=.*|=${EPREFIX}/usr/share/pixmaps|" \ + -e "/^desktopdir/s|=.*|=${EPREFIX}/usr/share/applications|" \ Makefile.am || die # cargo cult from bug #569528 @@ -52,7 +52,7 @@ src_prepare() { src_configure() { econf \ - --localedir=/usr/share/locale \ + --localedir="${EPREFIX}"/usr/share/locale \ $(use_enable nls) } |