You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/www-apache/mod_auth_token/mod_auth_token-1.0.6_beta.e...

48 lines
834 B

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=3
inherit apache-module eutils
MY_P="${PN}-${PV/_/-}"
DESCRIPTION="Token based URI access module for Apache2"
HOMEPAGE="https://code.google.com/p/mod-auth-token/"
SRC_URI="https://mod-auth-token.googlecode.com/files/${MY_P}.tar.gz"
KEYWORDS="~amd64"
LICENSE="Apache-2.0"
SLOT="0"
IUSE=""
DEPEND=""
RDEPEND=""
APACHE2_MOD_CONF="75_${PN}"
APACHE2_MOD_DEFINE="AUTH_TOKEN"
need_apache2_2
S="${WORKDIR}/${PN}"
src_prepare() {
epatch "${FILESDIR}"/${P}-ap_pstrcat.patch
}
src_compile() {
local flag=
APXS2_ARGS=
for flag in ${CFLAGS}; do
APXS2_ARGS+=" -Wc,${flag}"
done
for flag in ${LDFLAGS}; do
APXS2_ARGS+=" -Wl,${flag}"
done
APXS2_ARGS="${APXS2_ARGS} -c ${PN}.c"
apache-module_src_compile
}