diff options
author | 2009-02-04 14:36:35 +0000 | |
---|---|---|
committer | 2009-02-04 14:36:35 +0000 | |
commit | b1e11d109cfdda5ef7089f3f045510b61c7824f1 (patch) | |
tree | 69f3a23b6be37b603661749afe901706816e5099 /dev-libs/skalibs | |
parent | Do not break the dependency tree by being silly about hal-info. (diff) | |
download | gentoo-2-b1e11d109cfdda5ef7089f3f045510b61c7824f1.tar.gz gentoo-2-b1e11d109cfdda5ef7089f3f045510b61c7824f1.tar.bz2 gentoo-2-b1e11d109cfdda5ef7089f3f045510b61c7824f1.zip |
Bump to 0.47, small src_compile fix, ~amd64 keyword
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/skalibs')
-rw-r--r-- | dev-libs/skalibs/ChangeLog | 10 | ||||
-rw-r--r-- | dev-libs/skalibs/skalibs-0.30.ebuild | 8 | ||||
-rw-r--r-- | dev-libs/skalibs/skalibs-0.47.ebuild | 45 |
3 files changed, 57 insertions, 6 deletions
diff --git a/dev-libs/skalibs/ChangeLog b/dev-libs/skalibs/ChangeLog index 47e60fa9ec67..8e45834f66c9 100644 --- a/dev-libs/skalibs/ChangeLog +++ b/dev-libs/skalibs/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/skalibs -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/skalibs/ChangeLog,v 1.6 2008/11/17 20:55:06 flameeyes Exp $ +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/skalibs/ChangeLog,v 1.7 2009/02/04 14:36:35 patrick Exp $ + +*skalibs-0.47 (04 Feb 2009) + + 04 Feb 2009; Patrick Lauer <patrick@gentoo.org> skalibs-0.30.ebuild, + +skalibs-0.47.ebuild: + Bump to 0.47, small src_compile fix, ~amd64 keyword 17 Nov 2008; Diego E. Pettenò <flameeyes@gentoo.org> files/skalibs-0.30-gccattributes.h.patch: diff --git a/dev-libs/skalibs/skalibs-0.30.ebuild b/dev-libs/skalibs/skalibs-0.30.ebuild index 678ee19c0536..14b13c05ac52 100644 --- a/dev-libs/skalibs/skalibs-0.30.ebuild +++ b/dev-libs/skalibs/skalibs-0.30.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/skalibs/skalibs-0.30.ebuild,v 1.4 2004/06/24 23:33:47 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/skalibs/skalibs-0.30.ebuild,v 1.5 2009/02/04 14:36:35 patrick Exp $ # NOTE: The comments in this file are for instruction and documentation. # They're not meant to appear with your final, production ebuild. Please @@ -12,7 +12,7 @@ HOMEPAGE="http://www.skarnet.org/software/skalibs/" SRC_URI="http://www.skarnet.org/software/skalibs/${P}.tar.gz" LICENSE="public-domain" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="~x86 ~amd64" IUSE="" DEPEND="dev-libs/dietlibc" #RDEPEND="" @@ -32,7 +32,7 @@ src_unpack() { } src_compile() { - package/install + package/install || die "Failed to compile" } src_install() { diff --git a/dev-libs/skalibs/skalibs-0.47.ebuild b/dev-libs/skalibs/skalibs-0.47.ebuild new file mode 100644 index 000000000000..41c515bca87e --- /dev/null +++ b/dev-libs/skalibs/skalibs-0.47.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/skalibs/skalibs-0.47.ebuild,v 1.1 2009/02/04 14:36:35 patrick Exp $ + +# NOTE: The comments in this file are for instruction and documentation. +# They're not meant to appear with your final, production ebuild. Please +# remember to remove them before submitting or committing your ebuild. That +# doesn't mean you can't add your own comments though. + +DESCRIPTION="common libraries for skarnet.org packages" +HOMEPAGE="http://www.skarnet.org/software/skalibs/" +SRC_URI="http://www.skarnet.org/software/skalibs/${P}.tar.gz" +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" +DEPEND="dev-libs/dietlibc" +#RDEPEND="" + +MY_INSTALL="/package/prog/skalibs/" + +# Source directory; the dir where the sources can be found (automatically +# unpacked) inside ${WORKDIR}. S will get a default setting of ${WORKDIR}/${P} +# if you omit this line. +S=${WORKDIR}/prog/${P} + +src_unpack() { + unpack ${A} + + cd ${S}/src/headers + patch gccattributes.h < ${FILESDIR}/skalibs-0.30-gccattributes.h.patch +} + +src_compile() { + package/install || die "Failed to compile" +} + +src_install() { + insinto ${MY_INSTALL}/library + doins library/*.a + insinto ${MY_INSTALL}/sysdeps + doins sysdeps/* + insinto ${MY_INSTALL}/include + doins include/* +} |