diff options
author | 2014-11-04 03:50:42 +0000 | |
---|---|---|
committer | 2014-11-04 03:50:42 +0000 | |
commit | c43e69690832840b724251e55ad8e1495e81e547 (patch) | |
tree | 8b12d7679b061ea0cc5cfdb2da2a7bb5e304865d /dev-lang | |
parent | version bump (diff) | |
download | gentoo-2-c43e69690832840b724251e55ad8e1495e81e547.tar.gz gentoo-2-c43e69690832840b724251e55ad8e1495e81e547.tar.bz2 gentoo-2-c43e69690832840b724251e55ad8e1495e81e547.zip |
version bump
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x30C46538)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/execline/ChangeLog | 9 | ||||
-rw-r--r-- | dev-lang/execline/execline-1.3.1.1.ebuild | 64 |
2 files changed, 71 insertions, 2 deletions
diff --git a/dev-lang/execline/ChangeLog b/dev-lang/execline/ChangeLog index b3fbff4abdc3..80b361ffe4d2 100644 --- a/dev-lang/execline/ChangeLog +++ b/dev-lang/execline/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-lang/execline -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/execline/ChangeLog,v 1.1 2013/10/02 22:59:32 williamh Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/execline/ChangeLog,v 1.2 2014/11/04 03:50:42 williamh Exp $ + +*execline-1.3.1.1 (04 Nov 2014) + + 04 Nov 2014; William Hubbs <williamh@gentoo.org> +execline-1.3.1.1.ebuild: + version bump *execline-1.2.3 (02 Oct 2013) diff --git a/dev-lang/execline/execline-1.3.1.1.ebuild b/dev-lang/execline/execline-1.3.1.1.ebuild new file mode 100644 index 000000000000..4cddfb97c41b --- /dev/null +++ b/dev-lang/execline/execline-1.3.1.1.ebuild @@ -0,0 +1,64 @@ +# Copyright 2013-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/execline/execline-1.3.1.1.ebuild,v 1.1 2014/11/04 03:50:42 williamh Exp $ + +EAPI=5 + +inherit multilib toolchain-funcs + +DESCRIPTION="a non-interactive scripting language similar to SH" +HOMEPAGE="http://www.skarnet.org/software/execline/" +SRC_URI="http://www.skarnet.org/software/${PN}/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs" + +COMMON_DEPEND=">=dev-libs/skalibs-1.6.0.0" +DEPEND="${COMMON_DEPEND}" +RDEPEND="${COMMON_DEPEND}" + +S=${WORKDIR}/admin/${P} + +src_configure() +{ + echo $(tc-getCC) ${CFLAGS} > conf-compile/conf-cc + echo $(tc-getCC) ${LDFLAGS} > conf-compile/conf-dynld + echo /usr/$(get_libdir)/execline > conf-compile/conf-install-library + echo /$(get_libdir) > conf-compile/conf-install-library.so + echo $(tc-getCC) ${LDFLAGS} > conf-compile/conf-ld + echo > conf-compile/conf-stripbins + echo > conf-compile/conf-striplibs + rm conf-compile/flag-slashpackage + echo /usr/lib/skalibs/sysdeps > conf-compile/import + echo /usr/include/skalibs > conf-compile/path-include + echo /usr/$(get_libdir)/skalibs > conf-compile/path-library + echo /$(get_libdir)/skalibs > conf-compile/path-library.so +} + +src_compile() +{ + emake -j1 +} + +src_install() +{ + into / + dobin command/* + dolib.so library.so/* + + insinto /etc + doins etc/* + + insinto /usr/include + doins include/* + + if use static-libs ; then + into /usr + dolib.a library/* + fi + + dodoc $(find doc -type f ! -name "*.html" ! -name "COPYING") + dohtml -r doc/* +} |