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.2.20.1
- Loading branch information
Showing
2 changed files
with
41 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,3 +1,4 @@ | ||
DIST libgsf-1.14.30.tar.xz 582556 SHA256 cb48c3480be4a691963548e664308f497d93c9d7bc12cf6a68d5ebae930a5b70 SHA512 26379375a7f8ce8031929c3a64d8fc2412d5b4aab511d33eaca52aef28aa0e5697b90cd35b70917d7d39a1dcb7fc2b49690d47d48c260a1fff4d2b741ad516ab WHIRLPOOL 84588a63ab47dbbb6fbfca7a7f088a2c9c3280c6392531f7eed8b5299c4617e6869d4ae2aa159e031c34879b8892867ade04be558144cb5f6855c49441ae030f | ||
DIST libgsf-1.14.32.tar.xz 606180 SHA256 13bf38b848c01e20eb89a48150b6f864434ee4dfbb6301ddf6f4080a36cd99e9 SHA512 5136065e272fa67c8dd702cb4217e5c48166712d5bc056f815ca74dba8d1926ba149904ff60e6ac19a24a30a9c7f64e8c3f3165f24bc83aadbd54d56e3b32f2d WHIRLPOOL 7a257281c29f5c2d3705fd09320233faa2f9ab8c4dc3bb05161700d709cc60347b031bb06608d4dbfa8e6fde177d7504c4cc19f271d7a3b867bf4ef6f679c17e | ||
DIST libgsf-1.14.33.tar.xz 608364 SHA256 82dd38e0c1f497704bf3b43682fca2768886058f004b14e9b5d103596f8c6e6b SHA512 9dbda65a610f3e6efaf40bb51ed9ebabe485e0c2c9c8d0ff155ae39fa1aa3074df8094f51d9b0f27eb251b1aed4b4faa77ffce4d6dc16ef7c99c5b697528be5f WHIRLPOOL e2c4bdaf9ee9ecb0255ac8af8d413cc73c6dc78295eaf9191e71841218187bf4e280500525dc7b6b8048e15e282d15f7f46b226a12361f112b63494e6d07f1bf | ||
DIST libgsf-1.14.34.tar.xz 609880 SHA256 f0fea447e0374a73df45b498fd1701393f8e6acb39746119f8a292fb4a0cb528 SHA512 9a9fbb178147ed80572a8e727b1d3ba1f305c12c6a3b151016daf7eb51b7bf75b30d3397070ce98d6e83acf9617b15eb281fa976df291ab894119d2647826532 WHIRLPOOL c998d25adf0898b65219a9fe78075f8123a448e079fb167acc61b3cbe9093dcb2d9867a48d9d544b3a7b838a41559a3eac1b88e204294d56e49191f3d16f8e48 |
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,40 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI="5" | ||
GCONF_DEBUG="no" | ||
|
||
inherit gnome2 | ||
|
||
DESCRIPTION="The GNOME Structured File Library" | ||
HOMEPAGE="https://developer.gnome.org/gsf/" | ||
|
||
LICENSE="GPL-2 LGPL-2.1" | ||
SLOT="0/114" # libgsf-1.so version | ||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" | ||
IUSE="bzip2 gtk +introspection" | ||
|
||
RDEPEND=" | ||
>=dev-libs/glib-2.26:2 | ||
>=dev-libs/libxml2-2.4.16:2 | ||
sys-libs/zlib | ||
bzip2? ( app-arch/bzip2 ) | ||
gtk? ( x11-libs/gtk+:2 ) | ||
introspection? ( >=dev-libs/gobject-introspection-1 ) | ||
" | ||
DEPEND="${RDEPEND} | ||
>=dev-util/gtk-doc-am-1.12 | ||
>=dev-util/intltool-0.35.0 | ||
dev-libs/gobject-introspection-common | ||
virtual/pkgconfig | ||
" | ||
|
||
src_configure() { | ||
DOCS="AUTHORS BUGS ChangeLog HACKING NEWS README TODO" | ||
gnome2_src_configure \ | ||
--disable-static \ | ||
$(use_with bzip2 bz2) \ | ||
$(use_enable introspection) \ | ||
$(use_with gtk gdk-pixbuf) | ||
} |