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.
dev-libs/skalibs: 2.4.0.2 version bump
Gentoo-Bug: 601482 Closes: gentoo#3407
- Loading branch information
Showing
2 changed files
with
47 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 skalibs-2.3.10.0.tar.gz 213288 SHA256 e4d5147941055b2a367794666f773a4b216c3ae83c015a5fcf2cd0498470ea44 SHA512 9120554a91ef292a8094c4c036b0e93c8db0576d72597c720eca3562d7239da673ace12b9f73747d957a993a780f112b9b7d03030451c1d0b33eaf90b402832a WHIRLPOOL 9eb29c052d25c3850761956647d0a5403eff0a8e264c049885d0315a53f000aee428a688c5fb9cd831a6923cd734b6a1ca8ea8217b36991d95bce031979ae678 | ||
DIST skalibs-2.3.2.0.tar.gz 205976 SHA256 a36302b63fe97fa8d616cac0bb7aebbff60e1419dfb4d4f1af66b3c058dbd6ba SHA512 f5a4b85fc43f49eccf5a2ac2ce5b142afc28fe4af781e59d1ad21a7eb5896075720230391234fcf7879cb29ba2d1624926d8cca77c3925327aa7a9a5fefff91a WHIRLPOOL 453d5a0c9d1c2d84e1c8d5ac6bdb27e85d402de8007b8fcc6ba00c6e7c2400fb30c188da0a71343271edf47480916c7f3a5c7bb6e07703d5adc196bccc783350 | ||
DIST skalibs-2.3.9.0.tar.gz 211781 SHA256 6229fb4fb415699bbff3b446ff44aa5b7fb9c512b83bd68ae4005603afab60cb SHA512 30b08fec01944fd7e816eb275dfe6eafdf21e14af95e70ae4991b9da716ab191b22c1576084ed7c40fd9e958804519075befaaf4314ccb370ced3c5e94793212 WHIRLPOOL 626ae08b19bb26916b5f75a979f60455404d91ae77c7c70fd35ae5b697e970f6cd72c68f42ddf6b288018b5639003ab6f2d2860d5617d8b6a0feca02f261277e | ||
DIST skalibs-2.4.0.2.tar.gz 215964 SHA256 0708172bc2ec9825f8a4f312d35f8dcd94da5f291425a598c33c873b3de77df8 SHA512 1a60ff7bf2364cfe56dc5847321dad4eaa3942be90555a405c4c6c6fff287e197621796624cd52030f4373665ef53d4f7cd5832e8492ecf1d75c82544a4c8f2e WHIRLPOOL 921f30c49c14b26ddef4e4a92f22f097379619e1ad42a4486081efe2436ca07ac7343144663efce738b35fc2cf0580a7651b81ca308edca5a7d262ec8a1b3559 |
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,46 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
inherit versionator | ||
|
||
DESCRIPTION="skarnet.org general-purpose libraries" | ||
HOMEPAGE="http://www.skarnet.org/software/skalibs/" | ||
SRC_URI="http://www.skarnet.org/software/${PN}/${P}.tar.gz" | ||
|
||
LICENSE="ISC" | ||
SLOT="0/$(get_version_component_range 1-2)" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="doc ipv6 static-libs" | ||
|
||
DEPEND=">=sys-devel/make-3.81" | ||
RDEPEND="" | ||
|
||
HTML_DOCS="doc/*" | ||
|
||
src_prepare() { | ||
default | ||
|
||
# Remove QA warning about LDFLAGS addition | ||
sed -i "s/tryldflag LDFLAGS_AUTO -Wl,--hash-style=both/:/" "${S}/configure" || die | ||
} | ||
|
||
src_configure() { | ||
econf \ | ||
--datadir=/etc \ | ||
--dynlibdir=/$(get_libdir) \ | ||
--libdir=/usr/$(get_libdir)/${PN} \ | ||
--sysdepdir=/usr/$(get_libdir)/${PN} \ | ||
--enable-clock \ | ||
--enable-shared \ | ||
$(use_enable static-libs static) \ | ||
$(use_enable ipv6) | ||
} | ||
|
||
src_install() { | ||
emake DESTDIR="${D}" install | ||
|
||
use doc && einstalldocs | ||
} |