forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.3.0_rc1
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST libgtop-2.30.0.tar.xz 664476 SHA256 463bcbe5737b1b93f3345ee34abf601e8eb864f507c49ff1921c2737abafc1e5 SHA512 1ea867671744143d7bf128cfc4120ba5dfa85b8491a056b2704c9c116f3f1bdb1065b81cae011f141cbca69f8fff8f1410b076dffbad3356ee2087c521db4a4d WHIRLPOOL 88c2c1cade666e642a06550c447a4467b1ddb9f72496190245fad74a678b436ea498f38243ccf4a42fee8ff14e04fd2404b7a7756c9a880a9a8cf992399eb648 | ||
DIST libgtop-2.32.0.tar.xz 665224 SHA256 8443246332f22b33e389f565825b58cd9623fb7625bf874d404354b705ad178e SHA512 3fde4cded1e784c2dc7e1361fee089ff7ff704b6758e27ebf9dd98a21c75d4c6a709bf705738b3744a9ea5cf180f95b0912634434e92d71eb435f83a2c78a4b4 WHIRLPOOL a41cec8627019c0e937ddec7303f85d91f4c624cfd0da7ee1e7b72b1715de6b180dad18d83db57c166c01958aeed2ef4f2b0b015be0bb7eca9710b94e57671a4 | ||
DIST libgtop-2.34.0.tar.xz 677392 SHA256 8d8ae39e700d1c8c0b3e1391ed10ca88e6fc14f49d175d516dab6e3313b4ee2a SHA512 d9b8a34f9aedcf73e56a29cbde8a404911d04e87e4edf286720d7e16644a99a5e543605ed489fcf3a7a005ada7f5c15fef524c90e7ae0770793f1f2711959b93 WHIRLPOOL ad82894d89b997f9caaebbfaf2645015cdc82527e6387b12b970267f88905be90eb82493bd9cde23fec2f0573bdcfe936e80ab615c80d62be9a9873de47f16fe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
inherit gnome2 | ||
|
||
DESCRIPTION="A library that provides top functionality to applications" | ||
HOMEPAGE="https://git.gnome.org/browse/libgtop" | ||
|
||
LICENSE="GPL-2" | ||
SLOT="2/10" # libgtop soname version | ||
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" | ||
IUSE="+introspection" | ||
|
||
RDEPEND=" | ||
>=dev-libs/glib-2.26:2 | ||
introspection? ( >=dev-libs/gobject-introspection-0.6.7:= ) | ||
" | ||
DEPEND="${RDEPEND} | ||
>=dev-util/gtk-doc-am-1.4 | ||
>=dev-util/intltool-0.35 | ||
virtual/pkgconfig | ||
" | ||
|
||
src_configure() { | ||
gnome2_src_configure \ | ||
--disable-static \ | ||
$(use_enable introspection) | ||
} |