diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2009-05-01 15:43:59 +0000 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2009-05-01 15:43:59 +0000 |
commit | d6a3812d7983777082e2679463da93c6f835f621 (patch) | |
tree | 824f6bdbc944a052cba5142f41ee970e0f879c85 /net-misc/asterisk-addons | |
parent | stable ppc64, bug 267920 (diff) | |
download | gentoo-2-d6a3812d7983777082e2679463da93c6f835f621.tar.gz gentoo-2-d6a3812d7983777082e2679463da93c6f835f621.tar.bz2 gentoo-2-d6a3812d7983777082e2679463da93c6f835f621.zip |
Version bump for security bug #224949, with apologies for the delay. Took maintainership. Corrected Asterisk dependency, this will not work against 1.6 or 1.4 at all. Removed vulnerable version.
(Portage version: 2.1.6.11/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/asterisk-addons')
-rw-r--r-- | net-misc/asterisk-addons/ChangeLog | 12 | ||||
-rw-r--r-- | net-misc/asterisk-addons/asterisk-addons-1.2.9.ebuild (renamed from net-misc/asterisk-addons/asterisk-addons-1.2.8.ebuild) | 57 | ||||
-rw-r--r-- | net-misc/asterisk-addons/metadata.xml | 4 |
3 files changed, 41 insertions, 32 deletions
diff --git a/net-misc/asterisk-addons/ChangeLog b/net-misc/asterisk-addons/ChangeLog index c24adfb86071..747cd77d0cf8 100644 --- a/net-misc/asterisk-addons/ChangeLog +++ b/net-misc/asterisk-addons/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for net-misc/asterisk-addons -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-addons/ChangeLog,v 1.14 2008/08/16 16:09:46 tove Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-addons/ChangeLog,v 1.15 2009/05/01 15:43:59 chainsaw Exp $ + +*asterisk-addons-1.2.9 (01 May 2009) + + 01 May 2009; <chainsaw@gentoo.org> -asterisk-addons-1.2.8.ebuild, + +asterisk-addons-1.2.9.ebuild, metadata.xml: + Version bump for security bug #224949, with apologies for the delay. Took + maintainership. Corrected Asterisk dependency, this will not work against + 1.6 or 1.4 at all. Removed vulnerable version. 16 Aug 2008; Torsten Veller <tove@gentoo.org> metadata.xml: Remove stkn from metadata.xml (#27693) diff --git a/net-misc/asterisk-addons/asterisk-addons-1.2.8.ebuild b/net-misc/asterisk-addons/asterisk-addons-1.2.9.ebuild index 2733a3a24062..b0d6bb0f6f57 100644 --- a/net-misc/asterisk-addons/asterisk-addons-1.2.8.ebuild +++ b/net-misc/asterisk-addons/asterisk-addons-1.2.9.ebuild @@ -1,9 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-addons/asterisk-addons-1.2.8.ebuild,v 1.1 2008/02/21 04:07:47 rajiv Exp $ - -WANT_AUTOCONF="latest" -WANT_AUTOMAKE="latest" +# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-addons/asterisk-addons-1.2.9.ebuild,v 1.1 2009/05/01 15:43:59 chainsaw Exp $ inherit eutils flag-o-matic autotools @@ -23,7 +20,7 @@ SLOT="0" LICENSE="GPL-2" KEYWORDS="~amd64 ~sparc ~x86" -DEPEND=">=net-misc/asterisk-1.2.0 +RDEPEND="=net-misc/asterisk-1.2* mysql? ( virtual/mysql )" pkg_setup() { @@ -58,32 +55,32 @@ pkg_setup() { src_unpack() { unpack ${A} - cd ${S} + cd "${S}" # # gentoo patchset # - epatch ${FILESDIR}/${PN}-1.2.0-gentoo-base.diff - epatch ${FILESDIR}/${PN}-1.2.0-gentoo-res_sqlite3.diff - epatch ${FILESDIR}/${PN}-1.2.2-gentoo-format_mp3.diff - epatch ${FILESDIR}/${PN}-1.2.3-gentoo-ooh323c.diff + epatch "${FILESDIR}/${PN}-1.2.0-gentoo-base.diff" + epatch "${FILESDIR}/${PN}-1.2.0-gentoo-res_sqlite3.diff" + epatch "${FILESDIR}/${PN}-1.2.2-gentoo-format_mp3.diff" + epatch "${FILESDIR}/${PN}-1.2.3-gentoo-ooh323c.diff" # patch from jaervosz for uclibc if use elibc_uclibc; then - epatch ${FILESDIR}/${PN}-1.2.2-uclibc.diff - epatch ${FILESDIR}/${PN}-1.2.4-uclibc.diff + epatch "${FILESDIR}/${PN}-1.2.2-uclibc.diff" + epatch "${FILESDIR}/${PN}-1.2.4-uclibc.diff" fi # patch sqlite if use sqlite; then - cd ${WORKDIR}/sqlite-${SQLITE_PV} + cd "${WORKDIR}/sqlite-${SQLITE_PV}" - epatch ${FILESDIR}/sqlite-${SQLITE_PV}-data-corruption.patch + epatch "${FILESDIR}/sqlite-${SQLITE_PV}-data-corruption.patch" epunt_cxx fi # rebuild ooh323c configure if use h323; then - cd ${S}/asterisk-ooh323c + cd "${S}/asterisk-ooh323c" eautoreconf fi } @@ -94,53 +91,53 @@ src_compile() { emake -j1 OPTIMIZE="${CFLAGS}" || die "Make failed" if use sqlite; then - cd ${WORKDIR}/sqlite-${SQLITE_PV} + cd "${WORKDIR}/sqlite-${SQLITE_PV}" econf --enable-threadsafe || die "" emake || die "" - cd ${S} + cd "${S}" emake -j1 -C res_sqlite3 \ - SQLITEDIR=${WORKDIR}/sqlite-${SQLITE_PV} || die "Make res_sqlite failed" + SQLITEDIR="${WORKDIR}/sqlite-${SQLITE_PV}" || die "Make res_sqlite failed" fi if use h323; then - cd ${S}/asterisk-ooh323c + cd "${S}/asterisk-ooh323c" econf || die "econf failed" emake || die "emake failed" fi } src_install() { - make DESTDIR=${D} install || die "Make install failed" + make DESTDIR="${D}" install || die "Make install failed" if use sqlite; then make -C res_sqlite3 \ - DESTDIR=${D} install || die "Make install res_sqlite3 failed" + DESTDIR="${D}" install || die "Make install res_sqlite3 failed" fi if use h323; then make -C asterisk-ooh323c \ - DESTDIR=${D} install || die "Make instal ooh323c failed" + DESTDIR="${D}" install || die "Make instal ooh323c failed" fi # install standard docs... dodoc README dodoc doc/cdr_mysql.txt - insinto /usr/share/doc/${PF} + insinto "/usr/share/doc/${PF}" doins configs/*.sample if use sqlite; then - cd ${S}/res_sqlite3 + cd "${S}/res_sqlite3" docinto res_sqlite3 dodoc README - insinto /usr/share/doc/${PF}/res_sqlite3 + insinto "/usr/share/doc/${PF}/res_sqlite3" doins res_sqlite.conf dialplan.sql keepdir /var/lib/asterisk/sqlite fi if use h323; then - cd ${S}/asterisk-ooh323c + cd "${S}/asterisk-ooh323c" docinto chan_ooh323c dodoc AUTHORS INSTALL NEWS README ChangeLog dodoc h323.conf.sample extensions.conf.sample @@ -149,7 +146,7 @@ src_install() { newins h323.conf.sample h323.conf fi - cd ${S} + cd "${S}" if use mysql; then insinto /etc/asterisk @@ -159,8 +156,8 @@ src_install() { if use h323 || use mysql; then einfo "Fixing permissions" - chown -R root:asterisk ${D}etc/asterisk - chmod -R u=rwX,g=rX,o= ${D}etc/asterisk + chown -R root:asterisk "${D}etc/asterisk" + chmod -R u=rwX,g=rX,o= "${D}etc/asterisk" fi } diff --git a/net-misc/asterisk-addons/metadata.xml b/net-misc/asterisk-addons/metadata.xml index 036daf6ace24..c15061751ba4 100644 --- a/net-misc/asterisk-addons/metadata.xml +++ b/net-misc/asterisk-addons/metadata.xml @@ -2,6 +2,10 @@ <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <herd>voip</herd> + <maintainer> + <email>chainsaw@gentoo.org</email> + <name>Tony Vroon</name> + </maintainer> <use> <flag name="h323">Build the chan_ooh323c H.323 channel driver</flag> </use> |