From patchwork Tue Mar 19 09:00:36 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacob Kjaergaard X-Patchwork-Id: 228955 X-Patchwork-Delegate: esben@haabendal.dk Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hugin.dotsrc.org (hugin.dotsrc.org [IPv6:2001:878:346::102]) by ozlabs.org (Postfix) with ESMTP id C28CE2C00BF for ; Tue, 19 Mar 2013 20:00:41 +1100 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id 87858408D2 for ; Tue, 19 Mar 2013 10:00:40 +0100 (CET) X-Original-To: dev@oe-lite.org Delivered-To: dev@oe-lite.org Received: from mail02.prevas.se (mail02.prevas.se [62.95.78.10]) by hugin.dotsrc.org (Postfix) with ESMTPS id B1EFF3F987 for ; Tue, 19 Mar 2013 10:00:38 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=prevas.dk; i=@prevas.dk; l=4068; q=dns/txt; s=ironport2; t=1363683638; x=1395219638; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version; bh=eM981KIDi8lFAxzhi2q/hiA1csmVliET/eJWZAff55M=; b=oxBKtFqTK0BfJUDvFoUXdgQfZ705p/3/mZ5OOVylq072pIsDL5b8fZpQ 2AfBmDMtfak2pbgCKdT4Il5tMPZZLzao76XWJLHp8gBaEjFA3xkB/+i3m K95M26/2E48JWzPLulO+WoExN364b8qM694n37Uiu+cS4DxL1cjRtfrpc M=; X-IronPort-AV: E=Sophos;i="4.84,870,1355094000"; d="scan'208";a="2292279" Received: from vmprevas3.prevas.se (HELO smtp.prevas.se) ([172.16.8.103]) by ironport2.prevas.se with ESMTP/TLS/AES128-SHA; 19 Mar 2013 10:00:38 +0100 Received: from arh116.prevas.se (172.16.11.18) by smtp.prevas.se (172.16.8.105) with Microsoft SMTP Server (TLS) id 14.2.342.3; Tue, 19 Mar 2013 10:00:37 +0100 From: Jacob Barsoe To: Subject: [PATCH 2/2] lighttpd: Remove version 1.4.29 Date: Tue, 19 Mar 2013 10:00:36 +0100 Message-ID: X-Mailer: git-send-email 1.7.9.5 In-Reply-To: References: MIME-Version: 1.0 X-Originating-IP: [172.16.11.18] X-BeenThere: dev@oe-lite.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: OE-lite development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dev-bounces@oe-lite.org Errors-To: dev-bounces@oe-lite.org From: Jacob Kjaergaard --- recipes/lighttpd/lighttpd_1.4.29.oe | 98 ------------------------------- recipes/lighttpd/lighttpd_1.4.29.oe.sig | 1 - 2 files changed, 99 deletions(-) delete mode 100644 recipes/lighttpd/lighttpd_1.4.29.oe delete mode 100644 recipes/lighttpd/lighttpd_1.4.29.oe.sig diff --git a/recipes/lighttpd/lighttpd_1.4.29.oe b/recipes/lighttpd/lighttpd_1.4.29.oe deleted file mode 100644 index 337321b..0000000 --- a/recipes/lighttpd/lighttpd_1.4.29.oe +++ /dev/null @@ -1,98 +0,0 @@ -# -*- mode:python; -*- -DESCRIPTION = "Lightweight high-performance web server" -HOMEPAGE = "http://www.lighttpd.net/" -BUGTRACKER = "http://redmine.lighttpd.net/projects/lighttpd/issues" -LICENSE = "BSD" - -RECIPE_TYPES = "machine sdk" - -inherit autotools pkgconfig gettext sysvinit make - -DEPENDS = "libdl libm" - -SRC_URI = "http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${PV}.tar.bz2" -SRC_URI += "file://lighttpd.conf" -SRC_URI += "file://index.html" -SRC_URI += "file://lighttpd" -SRC_URI += "file://hackOutUsrLib.patch" - -EXTRA_OECONF = " \ - --without-libev \ - --without-mysql \ - --without-ldap \ - --without-attr \ - --without-valgrind \ - --without-openssl \ - --without-kerberos5 \ - --without-fam \ - --without-webdav-props \ - --without-webdav-locks \ - --without-gdbm \ - --without-memcache \ -" - -RECIPE_FLAGS += "lighttpd_lfs" -EXTRA_OECONF_LFS = "--disable-lfs" -EXTRA_OECONF_LFS:USE_lighttpd_lfs = "--enable-lfs" -EXTRA_OECONF += "${EXTRA_OECONF_LFS}" - -RECIPE_FLAGS += "lighttpd_ipv6" -EXTRA_OECONF_IPV6 = "--disable-ipv6" -EXTRA_OECONF_IPV6:USE_lighttpd_ipv6 = "--enable-ipv6" -EXTRA_OECONF += "${EXTRA_OECONF_IPV6}" - -RECIPE_FLAGS += "lighttpd_pcre" -DEFAULT_USE_lighttpd_pcre = "1" -EXTRA_OECONF_PCRE = "--without-pcre" -EXTRA_OECONF_PCRE:USE_lighttpd_pcre = "--with-pcre" -EXTRA_OECONF += "${EXTRA_OECONF_PCRE}" -DEPENDS_PCRE = "" -DEPENDS_PCRE:USE_lighttpd_pcre = "libpcre" -DEPENDS += "${DEPENDS_PCRE}" -RDEPENDS_${PN} += "${DEPENDS_PCRE}" - -RECIPE_FLAGS += "lighttpd_zlib" -DEFAULT_USE_lighttpd_zlib = "1" -EXTRA_OECONF_ZLIB = "--without-zlib" -EXTRA_OECONF_ZLIB:USE_lighttpd_zlib = "--with-zlib" -EXTRA_OECONF += "${EXTRA_OECONF_ZLIB}" -DEPENDS_ZLIB = "" -DEPENDS_ZLIB:USE_lighttpd_zlib = "libz" -DEPENDS += "${DEPENDS_ZLIB}" -RDEPENDS_${PN} += "${DEPENDS_ZLIB}" - -RECIPE_FLAGS += "lighttpd_bzip2" -EXTRA_OECONF_BZIP2 = "--without-bzip2" -EXTRA_OECONF_BZIP2:USE_lighttpd_bzip2 = "--with-bzip2" -EXTRA_OECONF += "${EXTRA_OECONF_BZIP2}" -DEPENDS_BZIP2 = "" -DEPENDS_BZIP2:USE_lighttpd_bzip2 = "libbz2" -DEPENDS += "${DEPENDS_BZIP2}" -RDEPENDS_${PN} += "${DEPENDS_BZIP2}" - -RECIPE_FLAGS += "lighttpd_ssl" -DEFAULT_USE_lighttpd_ssl = "1" -EXTRA_OECONF_SSL = "--without-openssl" -EXTRA_OECONF_SSL:USE_lighttpd_ssl = "--with-openssl=${STAGE_DIR}/${HOST_TYPE}${prefix}" -EXTRA_OECONF += "${EXTRA_OECONF_SSL}" -DEPENDS_SSL = "" -DEPENDS_SSL:USE_lighttpd_ssl = "libssl libcrypto" -DEPENDS += "${DEPENDS_SSL}" -RDEPENDS_${PN} += "${DEPENDS_SSL}" - -DEFAULT_USE_lighttpd_sysvinit_start = "70" -DEFAULT_USE_lighttpd_sysvinit_stop = "0" -SYSVINIT_SCRIPT_lighttpd = "lighttpd" -do_install[postfuncs] += " do_install_lighttpd_extra" -do_install_lighttpd_extra() { - install -d ${D}${sysconfdir}/init.d \ - ${D}/www/logs ${D}/www/pages/dav ${D}/www/var - install -m 0755 ${SRCDIR}/lighttpd ${D}${sysconfdir}/init.d - install -m 0755 ${SRCDIR}/lighttpd.conf ${D}${sysconfdir} - install -m 0644 ${SRCDIR}/index.html ${D}/www/pages/ -} - -FILES_${PN} += "${sysconfdir} /www" -FILES_${PN} += "${libdir}/mod_*" - -RDEPENDS_${PN} += "libc libgcc libdl libm" diff --git a/recipes/lighttpd/lighttpd_1.4.29.oe.sig b/recipes/lighttpd/lighttpd_1.4.29.oe.sig deleted file mode 100644 index 9f000bf..0000000 --- a/recipes/lighttpd/lighttpd_1.4.29.oe.sig +++ /dev/null @@ -1 +0,0 @@ -fe8ee6dc5f5302bffef905fcdf0b35f255e59b32 lighttpd-1.4.29.tar.bz2