diff options
author | Stefan Knoblich <stkn@gentoo.org> | 2005-09-02 20:15:57 +0000 |
---|---|---|
committer | Stefan Knoblich <stkn@gentoo.org> | 2005-09-02 20:15:57 +0000 |
commit | ef17e84422839bc2d78cb53233cfba375ea01dca (patch) | |
tree | 3a6b70399acefa29adf3f2ef3671fac5a101cbd6 /net-misc/asterisk-chan_sccp | |
parent | media-plugins/gst-plugins-a52dec stable on ppc. (diff) | |
download | gentoo-2-ef17e84422839bc2d78cb53233cfba375ea01dca.tar.gz gentoo-2-ef17e84422839bc2d78cb53233cfba375ea01dca.tar.bz2 gentoo-2-ef17e84422839bc2d78cb53233cfba375ea01dca.zip |
Version bump
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-misc/asterisk-chan_sccp')
4 files changed, 123 insertions, 1 deletions
diff --git a/net-misc/asterisk-chan_sccp/ChangeLog b/net-misc/asterisk-chan_sccp/ChangeLog index f4e3534dbf80..aed6c507acdb 100644 --- a/net-misc/asterisk-chan_sccp/ChangeLog +++ b/net-misc/asterisk-chan_sccp/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-misc/asterisk-chan_sccp # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-chan_sccp/ChangeLog,v 1.6 2005/08/27 21:14:30 stkn Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-chan_sccp/ChangeLog,v 1.7 2005/09/02 20:15:56 stkn Exp $ + +*asterisk-chan_sccp-0.0.20050902 (02 Sep 2005) + + 02 Sep 2005; Stefan Knoblich <stkn@gentoo.org> + +files/chan_sccp-20050902-gentoo.diff, + +asterisk-chan_sccp-0.0.20050902.ebuild: + Version bump. 27 Aug 2005; <stkn@gentoo.org> -asterisk-chan_sccp-0.0.20050725.ebuild, -asterisk-chan_sccp-0.0.20050730.ebuild: diff --git a/net-misc/asterisk-chan_sccp/asterisk-chan_sccp-0.0.20050902.ebuild b/net-misc/asterisk-chan_sccp/asterisk-chan_sccp-0.0.20050902.ebuild new file mode 100644 index 000000000000..a48216766c6e --- /dev/null +++ b/net-misc/asterisk-chan_sccp/asterisk-chan_sccp-0.0.20050902.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-chan_sccp/asterisk-chan_sccp-0.0.20050902.ebuild,v 1.1 2005/09/02 20:15:56 stkn Exp $ + +inherit eutils + +IUSE="debug" + +MY_P="chan_sccp-${PV/0.0./}" + +DESCRIPTION="SCCP channel plugin for the Asterisk soft PBX" +HOMEPAGE="http://chan-sccp.berlios.de/" +SRC_URI="ftp://ftp.berlios.de/pub/chan-sccp/${MY_P}.tar.bz2" + +S="${WORKDIR}/${MY_P}" + +SLOT="0" +KEYWORDS="~ppc ~x86" +LICENSE="GPL-2" + +DEPEND=">=net-misc/asterisk-1.0.5-r2" + +src_unpack() { + unpack ${A} + + cd ${S} + epatch ${FILESDIR}/chan_sccp-20050902-gentoo.diff + + if ! use debug; then + sed -i -e "s:^\(DEBUG=.*\):#\1:" Makefile + fi +} + +src_compile() { + emake -j1 || die +} + +src_install() { + emake INSTALL_PREFIX=${D} install || die + + dodoc conf/* contrib/* + + # fix permissions + if [[ -n "$(egetent group asterisk)" ]]; then + einfo "Fixing permissions..." + chown -R root:asterisk ${D}etc/asterisk + chmod -R u=rwX,g=rX,o= ${D}etc/asterisk + fi +} + +pkg_postinst() { + ewarn "You have to disable asterisk's chan_skinny to use this module!" + einfo "Add \"noload => chan_skinny.so\" to ${ROOT}etc/asterisk/modules.conf" +} diff --git a/net-misc/asterisk-chan_sccp/files/chan_sccp-20050902-gentoo.diff b/net-misc/asterisk-chan_sccp/files/chan_sccp-20050902-gentoo.diff new file mode 100644 index 000000000000..9b9b26026714 --- /dev/null +++ b/net-misc/asterisk-chan_sccp/files/chan_sccp-20050902-gentoo.diff @@ -0,0 +1,60 @@ +--- chan_sccp-20050902/Makefile.orig 2005-09-02 22:16:58.000000000 +0000 ++++ chan_sccp-20050902/Makefile 2005-09-02 22:17:33.000000000 +0000 +@@ -1,16 +1,14 @@ + INSTALL_PREFIX= +-ASTERISK_HEADER_DIR=$(INSTALL_PREFIX)/usr/include ++ASTERISK_HEADER_DIR=/usr/include ++AST_CFG=/usr/bin/asterisk-config + + # Location asterisk modules install to + AST_MODULES_DIR=$(INSTALL_PREFIX)/usr/lib/asterisk/modules/ + +-PROC=$(shell uname -m) +- + DEBUG=-ggdb + +-DEFINE=-Iinclude -D_REENTRANT -D_GNU_SOURCE -O -DCRYPTO -fPIC ++DEFINE=-Iinclude -D_REENTRANT -D_GNU_SOURCE -O -DCRYPTO -fPIC + CFLAG= -pipe -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations +-CFLAG+=$(shell if $(CC) -march=$(PROC) -S -o /dev/null -xc /dev/null >/dev/null 2>&1; then echo " -march=$(PROC)"; fi) + CFLAG+=$(shell if uname -m | grep -q ppc; then echo " -fsigned-char"; fi) + #CFLAG+= -pedantic + #CFLAG+= -W +@@ -40,14 +38,14 @@ + FLS+=sccp_socket + FLS+=sccp_indicate + +-CFLAGS+=$(DEFINE) $(CFLAG) -I$(ASTERISK_HEADER_DIR) ++CFLAGS+=$(DEFINE) $(CFLAG) + HEADERS=$(shell for i in $(FLS) ; do echo $$i.h ; done) + OBJECTS=$(shell for i in $(FLS) ; do echo .tmp/$$i.o ; done) + SOURCES=$(shell for i in $(FLS) ; do echo $$i.c ; done) + + chan_sccp.so: .config .tmp $(OBJECTS) $(HEADERS) $(SOURCES) + @echo "Linking chan_sccp.so" +- @$(CC) -shared -Xlinker -x -o chan_sccp.so $(OBJECTS) ++ @$(CC) $(shell $(AST_CFG) --solink) -o chan_sccp.so $(OBJECTS) + + .tmp/%.o: $(HEADERS) + @printf "Now compiling .... %-15s\t%s lines \n" $*.c "`wc -l <$*.c`" +@@ -55,18 +53,14 @@ + + all: chan_sccp.so + +-install: chan_sccp.so ++install: + @echo "Now Installing chan_sccp.so" +- @install -m 755 chan_sccp.so $(AST_MODULES_DIR); ++ @install -D -m 755 chan_sccp.so $(AST_MODULES_DIR)/chan_sccp.so; + @if ! [ -f $(INSTALL_PREFIX)/etc/asterisk/sccp.conf ]; then \ + echo "Installing config file $(INSTALL_PREFIX)/etc/asterisk/sccp.conf"; \ + mkdir -p $(INSTALL_PREFIX)/etc/asterisk; \ + cp conf/sccp.conf $(INSTALL_PREFIX)/etc/asterisk/; \ + fi +- @echo "Chan_sccp is now installed" +- @echo "Remember to disable chan_skinny by adding the following" +- @echo "line to /etc/asterisk/modules.conf:" +- @echo "noload => chan_skinny.so" + + clean: + rm -rf .config.h chan_sccp.so .tmp diff --git a/net-misc/asterisk-chan_sccp/files/digest-asterisk-chan_sccp-0.0.20050902 b/net-misc/asterisk-chan_sccp/files/digest-asterisk-chan_sccp-0.0.20050902 new file mode 100644 index 000000000000..634d2011dc11 --- /dev/null +++ b/net-misc/asterisk-chan_sccp/files/digest-asterisk-chan_sccp-0.0.20050902 @@ -0,0 +1 @@ +MD5 47ce5f2d2f3eef16e13348fc2c86165e chan_sccp-20050902.tar.bz2 57674 |