diff options
author | Michael Weber <xmw@gentoo.org> | 2013-09-30 20:18:48 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2013-09-30 20:18:48 +0000 |
commit | 23d0937f60b22d2813d198247de03f0ae2162522 (patch) | |
tree | 5fb91ebdc298b7bced3b0fddda450b4efe4f1f5a | |
parent | Drop arm since there are no binary packages we really care about anymore #483... (diff) | |
download | gentoo-2-23d0937f60b22d2813d198247de03f0ae2162522.tar.gz gentoo-2-23d0937f60b22d2813d198247de03f0ae2162522.tar.bz2 gentoo-2-23d0937f60b22d2813d198247de03f0ae2162522.zip |
Version bump.
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
-rw-r--r-- | dev-libs/skalibs/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/skalibs/skalibs-1.4.1.ebuild | 57 |
2 files changed, 63 insertions, 2 deletions
diff --git a/dev-libs/skalibs/ChangeLog b/dev-libs/skalibs/ChangeLog index 266039d28011..7d94b48df74e 100644 --- a/dev-libs/skalibs/ChangeLog +++ b/dev-libs/skalibs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/skalibs # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/skalibs/ChangeLog,v 1.12 2013/03/13 13:09:16 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/skalibs/ChangeLog,v 1.13 2013/09/30 20:18:48 xmw Exp $ + +*skalibs-1.4.1 (30 Sep 2013) + + 30 Sep 2013; Michael Weber <xmw@gentoo.org> +skalibs-1.4.1.ebuild: + Version bump. *skalibs-1.3.0 (13 Mar 2013) @@ -20,4 +25,3 @@ 06 Apr 2012; Michael Weber <xmw@gentoo.org> +skalibs-1.2.7.ebuild, +metadata.xml: Initial import - diff --git a/dev-libs/skalibs/skalibs-1.4.1.ebuild b/dev-libs/skalibs/skalibs-1.4.1.ebuild new file mode 100644 index 000000000000..c913f7ea86b6 --- /dev/null +++ b/dev-libs/skalibs/skalibs-1.4.1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/skalibs/skalibs-1.4.1.ebuild,v 1.1 2013/09/30 20:18:48 xmw Exp $ + +EAPI=4 + +inherit multilib toolchain-funcs + +DESCRIPTION="development files used for building software at skarnet.org: essentially general-purpose libraries" +HOMEPAGE="http://www.skarnet.org/software/skalibs/index.html" +SRC_URI="http://www.skarnet.org/software/${PN}/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc static-libs" + +DEPEND="" +RDEPEND="" + +S=${WORKDIR}/prog/${P} + +src_configure() { + echo $(tc-getCC) ${CFLAGS} > conf-compile/conf-cc + echo $(tc-getCC) ${LDFLAGS} > conf-compile/conf-dynld + echo $(tc-getCC) ${LDFLAGS} > conf-compile/conf-ld +} + +src_compile() { + emake -j1 +} + +src_install() { + insinto /etc + doins etc/leapsecs.dat + + insinto /usr/include/${PN} + doins include/* + + insopts -m0755 + insinto /usr/$(get_libdir)/${PN} + doins library.so/* + if use static-libs ; then + doins library/* + fi + + dodir /etc/ld.so.conf.d/ + echo "/usr/$(get_libdir)/${PN}" > ${ED}/etc/ld.so.conf.d/10${PN}.conf || die + + cd doc || die + for f in $(find . -type f ! -name "*.html" ! -name "COPYING") ; do + docinto $(dirname f) + dodoc $f + done + docinto html + use doc && dohtml -r . +} |