summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schweizer <genstef@gentoo.org>2006-10-03 10:57:27 +0000
committerStefan Schweizer <genstef@gentoo.org>2006-10-03 10:57:27 +0000
commit79c7ff2a9c96a7911a1ca8dedcbf7fa2b089feb5 (patch)
tree780eef9fdf0b9eeab593aca91a82fe2a8ce85cb8 /net-misc/asterisk-chan_capi-cm/asterisk-chan_capi-cm-0.5.3.ebuild
parentBump to 3.5.5 (pre-release). (diff)
downloadgentoo-2-79c7ff2a9c96a7911a1ca8dedcbf7fa2b089feb5.tar.gz
gentoo-2-79c7ff2a9c96a7911a1ca8dedcbf7fa2b089feb5.tar.bz2
gentoo-2-79c7ff2a9c96a7911a1ca8dedcbf7fa2b089feb5.zip
Fix uclibc patch and make it unconditional thanks to Natanael Copa <natanael.copa@gmail.com> in bug 148620
(Portage version: 2.1.2_pre2-r2) (Unsigned Manifest commit)
Diffstat (limited to 'net-misc/asterisk-chan_capi-cm/asterisk-chan_capi-cm-0.5.3.ebuild')
-rw-r--r--net-misc/asterisk-chan_capi-cm/asterisk-chan_capi-cm-0.5.3.ebuild67
1 files changed, 0 insertions, 67 deletions
diff --git a/net-misc/asterisk-chan_capi-cm/asterisk-chan_capi-cm-0.5.3.ebuild b/net-misc/asterisk-chan_capi-cm/asterisk-chan_capi-cm-0.5.3.ebuild
deleted file mode 100644
index 4c6846bab6a4..000000000000
--- a/net-misc/asterisk-chan_capi-cm/asterisk-chan_capi-cm-0.5.3.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-chan_capi-cm/asterisk-chan_capi-cm-0.5.3.ebuild,v 1.4 2006/05/06 15:11:36 stkn Exp $
-
-IUSE=""
-
-inherit eutils
-
-MY_P="chan_capi-cm-${PV}"
-
-DESCRIPTION="Alternative CAPI2.0 channel module for Asterisk"
-HOMEPAGE="http://sourceforge.net/projects/chan-capi"
-SRC_URI="mirror://sourceforge/chan-capi/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~ppc x86"
-
-DEPEND="!net-misc/asterisk-chan_capi
- >=net-misc/asterisk-1.0.5-r2
- !>=net-misc/asterisk-1.2.0
- net-dialup/capi4k-utils"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${A}
-
- cd ${S}
- epatch ${FILESDIR}/chan_capi-0.3.5-gentoo.diff
-
- if has_version "<net-misc/asterisk-1.1.0"; then
- einfo "Building for asterisk-1.0.x"
- # compile for asterisk-stable
- sed -i -e "s:^\(CFLAGS+=-DCVS_HEAD\):#\1:" \
- Makefile
- else
- einfo "Building for asterisk-1.2.x"
- fi
-}
-
-src_compile() {
- emake || die "emake failed"
-}
-
-src_install() {
- make INSTALL_PREFIX=${D} install config || die "make install failed"
-
- dodoc INSTALL LICENSE README capi.conf
-
- # fix permissions
- if [[ -n "$(egetent group asterisk)" ]]; then
- chown -R root:asterisk ${D}/etc/asterisk/capi.conf
- chmod -R u=rwX,g=rX,o= ${D}/etc/asterisk/capi.conf
- fi
-}
-
-pkg_postinst() {
- einfo "Please don't forget to enable chan_capi in your /etc/asterisk/modules.conf:"
- einfo ""
- einfo "load => chan_capi.so"
- einfo ""
- einfo "and in the [global] section:"
- einfo "chan_capi.so=yes"
- einfo ""
- einfo "(see /usr/share/doc/${PF} for more information)"
-}