summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaúl Porcel <armin76@gentoo.org>2008-04-21 17:27:43 +0000
committerRaúl Porcel <armin76@gentoo.org>2008-04-21 17:27:43 +0000
commit23e39bf839250bcd49244f2f2ae5ec9adc459736 (patch)
tree02cc8d7bfc69c39833ba43a84e8cc6f9809d922a /www-servers
parentFix up metadata.xml. If there's no maintainer for the package, the metadata a... (diff)
downloadgentoo-2-23e39bf839250bcd49244f2f2ae5ec9adc459736.tar.gz
gentoo-2-23e39bf839250bcd49244f2f2ae5ec9adc459736.tar.bz2
gentoo-2-23e39bf839250bcd49244f2f2ae5ec9adc459736.zip
Don't strip, respect CFLAGS, LDFLAGS, use right compiler, add ~ia64, sparc stable
(Portage version: 2.1.4.4)
Diffstat (limited to 'www-servers')
-rw-r--r--www-servers/mini_httpd/ChangeLog8
-rw-r--r--www-servers/mini_httpd/mini_httpd-1.19.ebuild10
2 files changed, 12 insertions, 6 deletions
diff --git a/www-servers/mini_httpd/ChangeLog b/www-servers/mini_httpd/ChangeLog
index 5839dd23e700..52a9461b474a 100644
--- a/www-servers/mini_httpd/ChangeLog
+++ b/www-servers/mini_httpd/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for www-servers/mini_httpd
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/mini_httpd/ChangeLog,v 1.9 2007/08/26 21:20:21 bangert Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/www-servers/mini_httpd/ChangeLog,v 1.10 2008/04/21 17:27:43 armin76 Exp $
+
+ 21 Apr 2008; Raúl Porcel <armin76@gentoo.org> mini_httpd-1.19.ebuild:
+ Don't strip, respect CFLAGS, LDFLAGS, use right compiler, add ~ia64, sparc
+ stable
26 Aug 2007; Thilo Bangert <bangert@gentoo.org>
files/mini_httpd.confd-1.19, -files/mini_httpd.conf.sample,
diff --git a/www-servers/mini_httpd/mini_httpd-1.19.ebuild b/www-servers/mini_httpd/mini_httpd-1.19.ebuild
index 5697b902d35a..056f37fb6c2c 100644
--- a/www-servers/mini_httpd/mini_httpd-1.19.ebuild
+++ b/www-servers/mini_httpd/mini_httpd-1.19.ebuild
@@ -1,6 +1,8 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-servers/mini_httpd/mini_httpd-1.19.ebuild,v 1.8 2007/05/10 15:03:37 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-servers/mini_httpd/mini_httpd-1.19.ebuild,v 1.9 2008/04/21 17:27:43 armin76 Exp $
+
+inherit toolchain-funcs
DESCRIPTION="Small forking webserver with optional ssl and ipv6 support"
HOMEPAGE="http://www.acme.com/software/mini_httpd/"
@@ -8,7 +10,7 @@ SRC_URI="http://www.acme.com/software/mini_httpd/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="ppc s390 ~sparc x86"
+KEYWORDS="~ia64 ppc s390 sparc x86"
IUSE="ssl ipv6"
DEPEND="ssl? ( dev-libs/openssl )"
@@ -38,7 +40,7 @@ src_compile() {
if ! use ipv6; then
sed -i 's@#define USE_IPV6@#undef USE_IPV6@' mini_httpd.c
fi
- emake || die
+ emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die
}
src_install() {