libmicrohttpd: added as a dep for gsa (openvas http front end)

This commit is contained in:
Zero_Chaos 2010-07-21 04:31:33 +00:00
parent 9db79c774a
commit d040533a60
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,2 @@
DIST libmicrohttpd-0.4.5.tar.gz 878634 RMD160 3ea01802eaf8ef1fb66dc33093ecee9d86cbb118 SHA1 799d825ff34dbf6e16f0a7e8187c31d7a13a5881 SHA256 138e89fbb114cf8bb564ed884d1da99e2c0634f4c11887f42dfdddabf7d52eab
EBUILD libmicrohttpd-0.4.5.ebuild 808 RMD160 0a062957c2c59b9ce96deb6a9430ab93455b568c SHA1 1e7b8d5a230b3c1c625690923ae502e3c70366bc SHA256 de922a143e11a77fe86febb6272961bed540901624e935fff1e83733cc590254

View file

@ -0,0 +1,32 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
# Nonofficial ebuild by Ycarus. For new version look here : http://gentoo.zugaina.org/
inherit eutils libtool
MY_PV=${PV/_/}
DESCRIPTION="libmicrohttpd is a small C library that is supposed to make it easy to run an HTTP server as part of another application."
HOMEPAGE="http://gnunet.org/libmicrohttpd/"
SRC_URI="ftp://ftp.gnu.org/gnu/${PN}/${PN}-${MY_PV}.tar.gz"
RESTRICT="nomirror"
IUSE=""
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
LICENSE="GPL-2"
SLOT="0"
DEPEND="net-misc/curl"
S=${WORKDIR}/${PN}-${MY_PV}
src_compile() {
econf || die "econf failed"
emake -j1 || die "emake failed"
}
src_install() {
make install DESTDIR=${D} || die "make install failed"
}