mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-util/geany: Bump to version 1.37.1
Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST geany-1.36.tar.bz2 4644521 BLAKE2B 80eeceee31a49e9728a358904ad40e353d3407a22492340e6aa9a82091d32fa004f4494d3ae027732174e7cf7f6fae620b511680e06e58c5b71dd259125900c4 SHA512 15005772b64e8321d7fa8552363df425eb25e9d7b0760c561c8fb3f34d7acae2bf25da8e04fda38a2a1b64cc31ff613b7ff2786d432ff014050c138c7473c810
|
||||
DIST geany-1.37.1.tar.bz2 4689173 BLAKE2B fe17674294e314204b490d0586bc360229a95348236f48a9d25bb49b0d1face415a11e60925501f22018ad047061521258d90af55d8d250499bbf6a09b02028a SHA512 9dafaa540ba4d37ae66f3cc1c4d9670aa8ea30e74e960f0ad010dcbcd1647d1dc2eea4ae7454f589fc6ec0ded0da2de98d85fecc92d8d1ff36cd62d3255a47f4
|
||||
DIST geany-1.37.tar.bz2 4689385 BLAKE2B b726fffc18cc780fb399472a93a1787ec06ec47caf5dfe9a89f88e5939f071bdb90f337c7dbb9f8681c8383a89fa9d4a8c42d9361771a3e8bb7103cab4629f21 SHA512 ffaa906eaa6198d24e91e21dafc4acc0811c8d90f714a36f646d70aa9f4eee7c53c29a063c39db41857de3c7729282ca7f88419ddc6b67b73ac35e91a376ea62
|
||||
|
||||
83
dev-util/geany/geany-1.37.1.ebuild
Normal file
83
dev-util/geany/geany-1.37.1.ebuild
Normal file
@@ -0,0 +1,83 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
# eutils required for strip-linguas
|
||||
inherit eutils xdg
|
||||
|
||||
LANGS="ar ast be bg ca cs de el en_GB es et eu fa fi fr gl he hi hu id it ja kk ko ku lb lt mn nl nn pl pt pt_BR ro ru sk sl sr sv tr uk vi zh_CN ZH_TW"
|
||||
NOSHORTLANGS="en_GB zh_CN zh_TW"
|
||||
|
||||
DESCRIPTION="GTK+ based fast and lightweight IDE"
|
||||
HOMEPAGE="https://www.geany.org"
|
||||
if [[ "${PV}" = 9999* ]] ; then
|
||||
inherit autotools git-r3
|
||||
EGIT_REPO_URI="https://github.com/geany/geany.git"
|
||||
else
|
||||
[[ "${PV}" == *_pre* ]] && inherit autotools
|
||||
SRC_URI="https://download.geany.org/${P}.tar.bz2"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
|
||||
fi
|
||||
LICENSE="GPL-2+ HPND"
|
||||
SLOT="0"
|
||||
|
||||
IUSE="gtk2 +vte"
|
||||
|
||||
BDEPEND="virtual/pkgconfig"
|
||||
RDEPEND=">=dev-libs/glib-2.32:2
|
||||
gtk2? (
|
||||
>=x11-libs/gtk+-2.24:2
|
||||
vte? ( x11-libs/vte:0 )
|
||||
)
|
||||
!gtk2? (
|
||||
>=x11-libs/gtk+-3.0:3
|
||||
vte? ( x11-libs/vte:2.91 )
|
||||
)"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/intltool
|
||||
sys-devel/gettext"
|
||||
|
||||
pkg_setup() {
|
||||
strip-linguas ${LANGS}
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
xdg_src_prepare #588570
|
||||
|
||||
# Syntax highlighting for Portage
|
||||
sed -i -e "s:*.sh;:*.sh;*.ebuild;*.eclass;:" \
|
||||
data/filetype_extensions.conf || die
|
||||
|
||||
if [[ ${PV} = *_pre* ]] || [[ ${PV} = 9999* ]] ; then
|
||||
eautoreconf
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local myeconfargs=(
|
||||
--disable-html-docs
|
||||
--disable-pdf-docs
|
||||
--disable-static
|
||||
$(use_enable gtk2)
|
||||
$(use_enable vte)
|
||||
)
|
||||
econf "${myeconfargs[@]}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install
|
||||
find "${ED}" \( -name '*.a' -o -name '*.la' \) -delete || die
|
||||
}
|
||||
|
||||
pkg_preinst() {
|
||||
xdg_pkg_preinst
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_pkg_postinst
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_pkg_postrm
|
||||
}
|
||||
Reference in New Issue
Block a user