diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-03-20 16:46:44 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-03-20 16:46:44 +0000 |
commit | ea437d38e745ab0436ebcbfcc662bbd38e578ce6 (patch) | |
tree | cdc4d6967f4e73944953874fd6742d104f122c65 /www-servers | |
parent | Drop old; fix for format-security; drop broken doc generation, bug #461000 (diff) | |
download | gentoo-2-ea437d38e745ab0436ebcbfcc662bbd38e578ce6.tar.gz gentoo-2-ea437d38e745ab0436ebcbfcc662bbd38e578ce6.tar.bz2 gentoo-2-ea437d38e745ab0436ebcbfcc662bbd38e578ce6.zip |
Use newbin instead of exinto /usr/bin && doexe
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'www-servers')
-rw-r--r-- | www-servers/mongoose/ChangeLog | 7 | ||||
-rw-r--r-- | www-servers/mongoose/mongoose-5.3.ebuild | 11 |
2 files changed, 12 insertions, 6 deletions
diff --git a/www-servers/mongoose/ChangeLog b/www-servers/mongoose/ChangeLog index e74c8477a60e..f505fd46d4e7 100644 --- a/www-servers/mongoose/ChangeLog +++ b/www-servers/mongoose/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-servers/mongoose -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/mongoose/ChangeLog,v 1.1 2014/06/06 04:22:17 zmedico Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-servers/mongoose/ChangeLog,v 1.2 2015/03/20 16:46:44 jlec Exp $ + + 20 Mar 2015; Justin Lecher <jlec@gentoo.org> mongoose-5.3.ebuild: + Use newbin instead of exinto /usr/bin && doexe *mongoose-5.3 (06 Jun 2014) diff --git a/www-servers/mongoose/mongoose-5.3.ebuild b/www-servers/mongoose/mongoose-5.3.ebuild index 21880f5b5d11..d1f44b646788 100644 --- a/www-servers/mongoose/mongoose-5.3.ebuild +++ b/www-servers/mongoose/mongoose-5.3.ebuild @@ -1,19 +1,23 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/mongoose/mongoose-5.3.ebuild,v 1.1 2014/06/06 04:22:17 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/mongoose/mongoose-5.3.ebuild,v 1.2 2015/03/20 16:46:44 jlec Exp $ EAPI=5 + inherit toolchain-funcs DESCRIPTION="easy to use web server" SRC_URI="https://github.com/cesanta/${PN}/archive/${PV}.zip -> ${P}.zip" HOMEPAGE="https://code.google.com/p/${PN}/" + LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~amd64-linux ~x86 ~arm-linux ~x86-linux" IUSE="lua" + RDEPEND="lua? ( >=dev-lang/lua-5.2.3:5.2= )" DEPEND="${RDEPEND}" + S=${WORKDIR}/${P}/examples src_prepare() { @@ -38,7 +42,6 @@ src_test() { } src_install() { - exeinto /usr/bin - newexe "${S}/server" "${PN}" + newbin "${S}/server" "${PN}" dodoc ../docs/{FAQ,LuaSqlite,Options,SSL,Usage}.md } |