diff options
Diffstat (limited to 'www-apache')
-rw-r--r-- | www-apache/mod_qos/ChangeLog | 4 | ||||
-rw-r--r-- | www-apache/mod_qos/Manifest | 4 | ||||
-rw-r--r-- | www-apache/mod_qos/mod_qos-7.6.ebuild | 8 |
3 files changed, 10 insertions, 6 deletions
diff --git a/www-apache/mod_qos/ChangeLog b/www-apache/mod_qos/ChangeLog index 8868f068e..a67a867cd 100644 --- a/www-apache/mod_qos/ChangeLog +++ b/www-apache/mod_qos/ChangeLog @@ -3,6 +3,10 @@ # $Header: $ 28 Aug 2008; Chad A Simmons (CCIEChad) <chad.simmons@member.fsf.org> + mod_qos-7.6.ebuild: + Commited wrong build. Original had bad quoting breaking compile. + + 28 Aug 2008; Chad A Simmons (CCIEChad) <chad.simmons@member.fsf.org> +files/10_mod_qos.conf, +mod_qos-7.6.ebuild, +metadata.xml: New Ebuild for bug 236049. Thanks to Tommy and scarabeus diff --git a/www-apache/mod_qos/Manifest b/www-apache/mod_qos/Manifest index c8c802512..2aac39df9 100644 --- a/www-apache/mod_qos/Manifest +++ b/www-apache/mod_qos/Manifest @@ -1,5 +1,5 @@ AUX 10_mod_qos.conf 1016 RMD160 c02d98ba12848f8eb9fb75487e9028f5190d88b5 SHA1 27647d3aabcda045b85bea87a09b89643200f195 SHA256 53d30482ea8e0f49e74e518277fecf9ccb36445b03a96fcdf19178d2cea57132 DIST mod_qos-7.6-src.tar.gz 202291 RMD160 072dcabf211dfc164fe940e0a46a262cad5c0972 SHA1 3fda2899240ef4798d047308ab8d7adb9083f9f1 SHA256 4683632608a68d8e23505e33c1f5e19b98648171afc001ff337a01864040782c -EBUILD mod_qos-7.6.ebuild 1163 RMD160 62d6da1461fffdf8395bdaa53c42bdfe21d1b539 SHA1 2860159391e1cc1173474380abe54674dc487350 SHA256 bafc046dc004efbe33743ebbca7464d7534deb2dc69b006ce61bd8534f5a5c3e -MISC ChangeLog 312 RMD160 557f3e674ad736f5d9e25bfbabb23e1af0c001e0 SHA1 74115eadc85721c0f6ab26a7215ad2316481f8b0 SHA256 374843c4a91c409e7b76fd67da60823aa3d345367d3364c140a2b2834bb1b20c +EBUILD mod_qos-7.6.ebuild 1147 RMD160 f2b43cc9c6bc7173e2f153ecdacd94431907cc98 SHA1 bac0626f31862d2e604d163643990bffd9fa914e SHA256 5628b1c8adabe486a19f1717bc9a85eaea2459fde10265c2b560a5ee8928904d +MISC ChangeLog 473 RMD160 1e3290c8f91649810cd21f2b61853d28898782ae SHA1 b5ee5713a18e999dee4968d8843e832cc7ffced1 SHA256 068ba632826786ba764a35db684161ba7190d4ec7826e8eb47d974a662783d47 MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42 diff --git a/www-apache/mod_qos/mod_qos-7.6.ebuild b/www-apache/mod_qos/mod_qos-7.6.ebuild index 5fc858e7e..b90d8e1d3 100644 --- a/www-apache/mod_qos/mod_qos-7.6.ebuild +++ b/www-apache/mod_qos/mod_qos-7.6.ebuild @@ -29,13 +29,13 @@ need_apache2 src_compile() { local MYOPTS="-c mod_qos.c" cd "${APXS2_S}" - "${APXS}" "${MYOPTS}" || die "compile failed" + ${APXS} ${MYOPTS} || die "compile failed" MYOPTS="-c mod_qos.lo" - "${APXS}" "${MYOPTS}" || die "compile failed" + ${APXS} ${MYOPTS} || die "compile failed" MYOPTS="-c mod_qos_control.c" - "${APXS}" "${MYOPTS}" || die "compile failed" + ${APXS} ${MYOPTS} || die "compile failed" MYOPTS="-c mod_qos_control.lo" - "${APXS}" "${MYOPTS}" || die "compile failed" + ${APXS} ${MYOPTS} || die "compile failed" cd "${S}"/tools sed -i -e '/strip/ d' Makefile || die "sed tools makefile failed" emake || die "emake failed" |