diff options
author | Ian Whyman <thev00d00@gentoo.org> | 2018-10-25 19:24:26 +0100 |
---|---|---|
committer | Ian Whyman <thev00d00@gentoo.org> | 2018-10-25 19:24:41 +0100 |
commit | 100e951b74178d9875812f9099bfb864a62150d0 (patch) | |
tree | 6ec85e8f9013440a7019a869f118c73991e06761 /dev-lang/duktape/duktape-2.2.1.ebuild | |
parent | sci-chemistry/tm-align: amd64 stable wrt bug #668654 (diff) | |
download | gentoo-100e951b74178d9875812f9099bfb864a62150d0.tar.gz gentoo-100e951b74178d9875812f9099bfb864a62150d0.tar.bz2 gentoo-100e951b74178d9875812f9099bfb864a62150d0.zip |
dev-lang/duktape: bump
Signed-off-by: Ian Whyman <thev00d00@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'dev-lang/duktape/duktape-2.2.1.ebuild')
-rw-r--r-- | dev-lang/duktape/duktape-2.2.1.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/dev-lang/duktape/duktape-2.2.1.ebuild b/dev-lang/duktape/duktape-2.2.1.ebuild new file mode 100644 index 000000000000..13e2afcd3471 --- /dev/null +++ b/dev-lang/duktape/duktape-2.2.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Embeddable Javascript engine" +HOMEPAGE="http://duktape.org" +SRC_URI="http://duktape.org/${P}.tar.xz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_prepare() { + eapply_user + + # Set install path + sed -i "s#INSTALL_PREFIX=/usr/local#INSTALL_PREFIX=${D::-1}/usr#" \ + Makefile.sharedlibrary || die "failed to set install path" + + # Edit pkgconfig + sed "s#VERSION#${PV}#" "${FILESDIR}/${PN}.pc" > "${S}/${PN}.pc" || die + sed -i "s#LIBDIR#$(get_libdir)#" "${S}/${PN}.pc" || die + + # Set lib folder + sed -i "s#(INSTALL_PREFIX)/lib#(INSTALL_PREFIX)/$(get_libdir)#" \ + Makefile.sharedlibrary || die + + mv Makefile.sharedlibrary Makefile || die "failed to rename makefile" +} + +src_install() { + dodir /usr/$(get_libdir) + dodir /usr/include + emake install + + insinto /usr/$(get_libdir)/pkgconfig/ + doins "${S}/${PN}.pc" +} |