# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk/asterisk-1.0.12.ebuild,v 1.6 2007/01/27 18:03:21 josejx Exp $ inherit eutils perl-app ADDONS_VERSION="1.0.9" BRI_VERSION="0.2.0-RC8r" MY_P="${P/_p/.}" DESCRIPTION="Asterisk: A Modular Open Source PBX System" HOMEPAGE="http://www.asterisk.org/" SRC_URI="http://ftp1.digium.com/pub/telephony/${PN}/releases/${MY_P}.tar.gz http://ftp1.digium.com/pub/telephony/${PN}/old-releases/${PN}-addons-${ADDONS_VERSION}.tar.gz bri? ( http://www.junghanns.net/downloads/bristuff-${BRI_VERSION}.tar.gz )" S_ADDONS="${WORKDIR}/${PN}-addons-${ADDONS_VERSION}" S_BRI="${WORKDIR}/bristuff-${BRI_VERSION}" S="${WORKDIR}/${MY_P}" IUSE="alsa bri debug doc gtk hardened mmx mysql mysqlfriends postgres pri resperl speex ukcid vmdbmysql vmdbpostgres zaptel" SLOT="0" LICENSE="GPL-2" KEYWORDS="~ppc x86" DEPEND="dev-libs/newt dev-libs/openssl media-sound/mpg123 media-sound/sox doc? ( app-doc/doxygen ) gtk? ( =x11-libs/gtk+-1.2* ) pri? ( :#include \"libpq-fe\.h\":" \ apps/app_voicemail.c elif use vmdbmysql; then einfo "Enabling MySQL voicemail support" sed -i -e "s:^\(USE_MYSQL_VM_INTERFACE\).*:\1=1:" \ -e "s:^\(CFLAGS+=-DUSEMYSQLVM\):\1 -I${S_ADDONS}:" \ apps/Makefile fi # # MySQL friends support # if use mysqlfriends; then einfo "Enabling MySQL friends support for SIP and IAX" sed -i -e "s:^\(USE_MYSQL_FRIENDS\)=.*:\1=1:" \ -e "s:^\(USE_SIP_MYSQL_FRIENDS\)=.*:\1=1:" \ channels/Makefile fi # # asterisk add-ons # cd ${S_ADDONS} sed -i -e "s:-I../asterisk:-I${S} -I${S}/include:" Makefile sed -i -e "s:^OPTIMIZE+=.*:OPTIMIZE+=${CFLAGS}:" \ -e "s:^\(CFLAGS=\)\(.*\):\1-I${S}/include -fPIC \2:" \ format_mp3/Makefile # # BRI patches # if use bri; then cd ${S} einfo "Patching asterisk w/ BRI stuff" # remove after new patch has been released sed -i -e "s:^\([+-]\)1\.0\.10:\11.0.11.1:" \ ${S_BRI}/patches/asterisk.patch epatch ${S_BRI}/patches/asterisk.patch fi # # Revived snmp plugin support # # if use snmp; then # cd ${S} # einfo "Patching snmp plugin helper functions" # epatch ${FILESDIR}/1.0.0/ast-ax-snmp-1.0.6.diff # fi # fix path for non-root cd ${S} sed -i -e "s:^\(ASTVARRUNDIR=\).*:\1\$(INSTALL_PREFIX)/var/run/asterisk:" \ Makefile # fix contrib scripts for non-root epatch ${FILESDIR}/1.0.0/${PN}-1.0.7-scripts.diff # add initgroups support to asterisk, this is needed # to support supplementary groups for the asterisk # user (start-stop-daemons --chguid breaks realtime priority support) epatch ${FILESDIR}/1.0.0/${PN}-1.0.8-initgroups.diff # UK callerid patch, adds support for british-telecoms callerid to x100p cards # see http://www.lusyn.com/asterisk/patches.html for more information use ukcid && \ epatch ${FILESDIR}/1.0.0/${PN}-1.0.9-ukcid.patch # needed for >=freetds-0.63 if has_version ">=dev-db/freetds-0.63"; then epatch ${FILESDIR}/1.0.0/${PN}-1.0.9-freetds.diff fi # security fix, bug #111836 epatch ${FILESDIR}/1.0.0/${PN}-1.0.10-vmail.cgi.patch # patch for mISDN epatch ${FILESDIR}/1.0.0/${PN}-1.0.10-misdn.patch # CVE-2006-1827: integer signedness error in format_jpeg (#131096) epatch ${FILESDIR}/1.0.0/${PN}-1.0-CVE-2006-1827.patch } src_compile() { # build asterisk first... einfo "Building Asterisk..." cd ${S} emake -j1 || die "Make failed" # create api docs use doc && \ emake -j1 progdocs # # add-ons # einfo "Building additional stuff..." cd ${S_ADDONS} emake -j1 || die "Make failed" if use resperl; then cd ${S_ADDONS}/res_perl emake -j1 || die "Building embedded perl failed" fi } src_install() { make DESTDIR=${D} install || die "Make install failed" make DESTDIR=${D} samples || die "Make install samples failed" # install astconf.h, a lot of external modules need this insinto /usr/include/asterisk doins astconf.h # install addmailbox and astgenkey dosbin contrib/scripts/addmailbox dosbin contrib/scripts/astgenkey newinitd ${FILESDIR}/1.0.0/asterisk.rc6.sec asterisk newconfd ${FILESDIR}/1.0.0/asterisk.confd.sec asterisk # don't delete these, even if they are empty keepdir /var/spool/asterisk/voicemail/default/1234/INBOX keepdir /var/spool/asterisk/tmp keepdir /var/log/asterisk/cdr-csv keepdir /var/run/asterisk # install standard docs... dodoc BUGS CREDITS LICENSE ChangeLog HARDWARE README README.fpm dodoc SECURITY doc/CODING-GUIDELINES doc/linkedlists.README dodoc doc/README.* dodoc doc/*.txt docinto scripts dodoc contrib/scripts/* docinto firmware/iax dodoc contrib/firmware/iax/* # install api docs if use doc; then insinto /usr/share/doc/${PF}/api/html doins doc/api/html/* fi insinto /usr/share/doc/${PF}/cgi doins contrib/scripts/vmail.cgi doins images/*.gif # # add-ons # # install additional modules... einfo "Installing additional modules..." cd ${S_ADDONS} make INSTALL_PREFIX=${D} install || die "Make install failed" if use resperl; then perlinfo cd ${S_ADDONS}/res_perl make INSTALL_PREFIX=${D} install || die "Installation of perl AST_API failed" # move AstApiBase.so to a proper place dodir ${VENDOR_LIB}/auto/AstAPIBase mv ${D}/etc/asterisk/perl/AstAPIBase.so ${D}${VENDOR_LIB}/auto/AstAPIBase # move *.pm files to other location dodir ${VENDOR_LIB}/AstAPI dodir ${VENDOR_LIB}/AstAPIBase for x in AstAPI.pm AstConfig.pm LoadFile.pm PerlSwitch.pm WebServer.pm; do mv ${D}/etc/asterisk/perl/${x} ${D}${VENDOR_LIB}/AstAPI dosed "s/^use[\t ]\+${x/.pm/};/use AstAPI::${x/.pm/};/" /etc/asterisk/perl/asterisk_init.pm done mv ${D}/etc/asterisk/perl/AstAPIBase.pm ${D}${VENDOR_LIB}/AstAPIBase dosed "s/^use[\t ]\+AstAPI;/use AstAPI::AstAPI;/" /etc/asterisk/perl/asterisk_init.pm dosed "s/^use[\t ]\+AstAPIBase;/use AstAPIBase::AstAPIBase;/" ${VENDOR_LIB}/AstAPI/AstAPI.pm # move apps + htdocs to a proper place dodir /var/lib/asterisk/perl mv ${D}/etc/asterisk/perl/{apps,htdocs} ${D}/var/lib/asterisk/perl # fix locations sed -i -e "s:/etc/asterisk/perl:/var/lib/asterisk/perl:" \ ${D}${VENDOR_LIB}/AstAPI/LoadFile.pm ${D}${VENDOR_LIB}/AstAPI/WebServer.pm fi } pkg_preinst() { einfo "Adding asterisk user and group" enewgroup asterisk enewuser asterisk -1 -1 /var/lib/asterisk asterisk } pkg_postinst() { # # Change permissions and ownerships of asterisk # directories and files # einfo "Fixing permissions and ownerships" # fix permissions in /var/... for x in spool run lib log; do chown -R asterisk:asterisk ${ROOT}var/${x}/asterisk chmod -R u=rwX,g=rX,o= ${ROOT}var/${x}/asterisk done chown -R root:asterisk ${ROOT}etc/asterisk chmod -R u=rwX,g=rX,o= ${ROOT}etc/asterisk # # Fix locations for old installations (pre-non-root versions) # if [[ -z "$(grep "/var/run/asterisk" ${ROOT}etc/asterisk/asterisk.conf)" ]] then elog "Fixing astrundir in ${ROOT}etc/asterisk/asterisk.conf" mv -f ${ROOT}etc/asterisk/asterisk.conf \ ${ROOT}etc/asterisk/asterisk.conf.bak sed -e "s:^\(astrundir[\t ]=>\).*:\1 /var/run/asterisk:" \ ${ROOT}etc/asterisk/asterisk.conf.bak >\ ${ROOT}etc/asterisk/asterisk.conf elog "Backup has been saved as ${ROOT}etc/asterisk/asterisk.conf.bak" fi # # Some messages # einfo "Asterisk has been installed" einfo "" elog "to add new Mailboxes use: /usr/sbin/addmailbox" echo elog "If you want to know more about asterisk, visit these sites:" elog "http://www.asteriskdocs.org/" elog "http://www.voip-info.org/wiki-Asterisk" echo elog "http://asterisk.xvoip.com/" elog "http://junghanns.net/asterisk/" elog "http://www.automated.it/guidetoasterisk.htm" echo elog "Gentoo VoIP IRC Channel:" elog "#gentoo-voip @ irc.freenode.net" # # Warning about security changes... # ewarn "*********************** Important changes **************************" ewarn ewarn "- Asterisk runs as user asterisk, group asterisk by default" ewarn ewarn "- Make sure the asterisk user is a member of the proper groups if you want it" ewarn " to have access to hardware devices, e.g. \"audio\" for Alsa and OSS sound or" ewarn " \"dialout\" for zaptel!" ewarn ewarn "- Permissions of /etc/asterisk have been changed to root:asterisk" ewarn " 750 (rwxr-x--- directories) / 640 (rw-r----- files)" ewarn ewarn "- Permissions of /var/{log,lib,run,spool}/asterisk have been changed" ewarn " to asterisk:asterisk 750 / 640" ewarn ewarn "- Asterisk's unix socket and pidfile are now in /var/run/astrisk" ewarn ewarn "- Asterisk cannot set the IP ToS bits when run as user," ewarn " use something like this to make iptables set them for you:" ewarn " \"iptables -A OUTPUT -t mangle -p udp -m udp --dport 5060 -j DSCP --set-dscp 0x28\"" ewarn " \"iptables -A OUTPUT -t mangle -p udp -m udp --sport 10000:20000 -j DSCP --set-dscp 0x28\"" ewarn " (taken from voip-info.org comments (see below), thanks andrewid)" ewarn ewarn "For more details:" ewarn " http://bugs.gentoo.org/show_bug.cgi?id=88732" ewarn " http://www.voip-info.org/wiki-Asterisk+non-root" }