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.
Showing
2 changed files
with
50 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 augeas-0.10.0.tar.gz 1676906 SHA256 ec111af06186216930176ebe5ecccdf7bf528528aee9acde1d5d70088484afca SHA512 4b23c69ce92971ad63cd5829044051a53b7976a7e3ccb9006282333a2dd06789e7c5da671450eb81904d237c36d449ac0924b06d9690dc7e5de4b8b40a58ec8c WHIRLPOOL 8b542cfa1bdcad3508cfd3cf25803ed27304ecdaaab4c9e7ce6ae2b7798c4cdc3d344ab4793cb2a0fd7b1b276eee20385b129d9fcf3b5b3b4596c3b0c96424cc | ||
DIST augeas-1.1.0.tar.gz 1940928 SHA256 9d81e4228329e2d5cccb018ab06bc8b734fb2dede2c4d9b5c02303d4a690b76b SHA512 ddb06f71993079330fc5b134ccd45476c1ab24f475b7a859c5920a7af3bd00d4dae31bf8110841ded4c4f5197e72911c298d7fcfe32d1d3e6821bca74aa67e26 WHIRLPOOL be1c83ecb1c8c7378374132bdd56be641e1200950e6e6d46e94ef35fc97be98157214b994071cf56f2aaafda29d91993c9a023ded5256c36364abbc9cbb498ca | ||
DIST augeas-1.3.0.tar.gz 1983656 SHA256 80763031af76515a8ea66013ddc3c466742a15d2e907c7c8e2e3b7410262e2af SHA512 92cc2cf83faa42e83621fe0f73fe9f7247d802f17da781e51d068056d20b1645de1f0ea0d5070c0d5729a3f6554d64a95e31111bf3e44b959386559619843e79 WHIRLPOOL 4e4c3374adca662ce90f94eb204028526ec0c3a9b0bc6644515994b88e289f3e1aa5f2b6ce7c28103a2a64e5185c8ba64d55e1a448e14f745d53aec4bf20e8b3 | ||
DIST augeas-1.5.0.tar.gz 2072169 SHA256 223bb6e6fe3e9e92277dafd5d34e623733eb969a72a382998d204feab253f73f SHA512 4683668c6562e14cd39bda69f2fa7f6db5f5a76386521a9b10c41fa2031c10ff158f682b56066d0525554c4229677c64e92f6453f75d185d367bc7481fc10695 WHIRLPOOL e4bd492320cdfcf5c8470b8e4c0fb35077b1190bb8c18b245d54f532badc4975ac564fca97ec6f8f039a77a771b16d0354ef53d02ccd5c912ab9f91ca391d282 |
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,49 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
inherit autotools-utils | ||
|
||
DESCRIPTION="A library for changing configuration files" | ||
HOMEPAGE="http://augeas.net/" | ||
SRC_URI="http://download.augeas.net/${P}.tar.gz" | ||
|
||
SLOT="0" | ||
LICENSE="LGPL-2.1" | ||
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" | ||
IUSE="static-libs test" | ||
|
||
RDEPEND=" | ||
dev-libs/libxml2 | ||
sys-libs/readline:=" | ||
DEPEND="${RDEPEND} | ||
virtual/pkgconfig | ||
>=app-doc/NaturalDocs-1.40 | ||
test? ( dev-lang/ruby )" | ||
|
||
#PATCHES=( | ||
# "${FILESDIR}"/${P}-gets.patch | ||
# "${FILESDIR}"/${P}-test.patch | ||
# "${FILESDIR}"/${P}-test2.patch | ||
# "${FILESDIR}"/${P}-libxml2-pkgconfig.patch | ||
# ) | ||
|
||
src_prepare() { | ||
if [ -f /usr/share/NaturalDocs/Config/Languages.txt ] ; then | ||
addwrite /usr/share/NaturalDocs/Config/Languages.txt | ||
fi | ||
if [ -f /usr/share/NaturalDocs/Config/Topics.txt ] ; then | ||
addwrite /usr/share/NaturalDocs/Config/Topics.txt | ||
fi | ||
autotools-utils_src_prepare | ||
} | ||
|
||
src_configure() { | ||
# Needs to implemented | ||
local myeconfargs=( --without-selinux ) | ||
autotools-utils_src_configure | ||
} | ||
|
||
AUTOTOOLS_IN_SOURCE_BUILD=1 |