Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 296341 Details for
Bug 107482
net-misc/kamailio Open Source SIP Server (new ebuild, in overlay)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
Updated Ebuild for OpenSips 1.7.1
opensips-1.7.1.ebuild (text/plain), 2.95 KB, created by
Anthony Plack
on 2011-12-19 04:03:46 UTC
(
hide
)
Description:
Updated Ebuild for OpenSips 1.7.1
Filename:
MIME Type:
Creator:
Anthony Plack
Created:
2011-12-19 04:03:46 UTC
Size:
2.95 KB
patch
obsolete
># Copyright 1999-2005 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header$ > >inherit eutils > >DESCRIPTION="OpenSIPS - flexible and robust SIP (RFC3261) server" >HOMEPAGE="http://www.opensips.org/" >MY_P="${P}_src" >P2="${P}-tls" >SRC_URI="http://opensips.org/pub/opensips/${PV}/src/${MY_P}.tar.gz" > >LICENSE="GPL-2" >SLOT="0" >KEYWORDS="~x86" >IUSE="debug ipv6 mysql postgres radius jabber ssl cpl unixodbc b2bua presence" > >RDEPEND=" > mysql? ( >=dev-db/mysql-4.1.20 ) > radius? ( >=net-dialup/radiusclient-ng-0.5.0 ) > postgres? ( >=dev-db/postgresql-8.0.8 ) > jabber? ( dev-libs/expat ) > ssl? ( dev-libs/openssl ) > cpl? ( dev-libs/libxml2 ) > b2bua? ( dev-libs/libxml2 ) > presence? ( dev-libs/libxml2 ) > unixodbc? ( >=dev-db/unixODBC-2.3.0 )" > >inc_mod="" >make_options="" > >pkg_setup() { > use mysql && \ > inc_mod="${inc_mod} db_mysql" > > use postgres && \ > inc_mod="${inc_mod} db_postgres" > > use radius && \ > inc_mod="${inc_mod} aaa_radius peering" > > use jabber && \ > inc_mod="${inc_mod} jabber" > > use cpl && \ > inc_mod="${inc_mod} cpl-c" > > use b2bua && \ > inc_mod="${inc_mod} b2b_entities b2bua_logic" > > use presence && \ > inc_mod="${inc_mod} presence presence_dialoginfo presence_mwi presence_xcapdiff presence_xml pua pua_bla pua_dialoginfo pua_mi pua_usrloc pua_xmpp rls xcap_client" > > use unixodbc && \ > inc_mod="${inc_mod} db_unixodbc" > > export inc_mod >} > >src_unpack() { > unpack ${MY_P}.tar.gz > mv ${P2} ${P} > > cd ${S} > use ipv6 || \ > sed -i -e "s/-DUSE_IPV6//g" Makefile.defs >} > >src_compile() { > local compile_options > > pkg_setup > > # optimization can result in strange debuging symbols so omit it in case > if use debug; then > compile_options="${compile_options} mode=debug" > else > compile_options="${compile_options} CFLAGS=${CFLAGS}" > fi > > if use ssl; then > compile_options="TLS=1 ${compile_options}" > fi >echo "Root:${ROOT}" > emake all "${compile_options}" \ > prefix=${ROOT}/ \ > include_modules="${inc_mod}" \ > cfg-prefix=${ROOT}/ \ > cfg-target=${ROOT}/etc/opensips/ || die >} > >src_install () { > local install_options >echo "D:${D}" > emake install \ > prefix=${D}/ \ > include_modules="${inc_mod}" \ > bin-prefix=${D}/usr/sbin \ > bin-dir="" \ > cfg-prefix=${D}/etc \ > cfg-dir=opensips/ \ > cfg-target=${D}/etc/opensips \ > modules-prefix=${D}/usr/lib/opensips \ > modules-dir=modules \ > modules-target=${D}/usr/lib/opensips/modules/ \ > man-prefix=${D}/usr/share/man \ > man-dir="" \ > doc-prefix=${D}/usr/share/doc \ > doc-dir=${PF} || die > exeinto /etc/init.d > newexe ${FILESDIR}/opensips.init opensips > > # fix what the Makefile don't do > use mysql || \ > rm ${D}/usr/sbin/opensips_mysql.sh >} > >pkg_postinst() { > einfo "WARNING: If you upgraded from a previous OpenSIPS version" > einfo "please read the README, NEWS and INSTALL files in the" > einfo "documentation directory because the database and the" > einfo "configuration file of old OpenSIPS versions are incompatible" > einfo "with the current version." >} > >pkg_prerm () { > ${D}/etc/init.d/opensips stop >/dev/null >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 107482
:
69392
|
69393
|
69407
|
71548
|
80524
|
88666
|
91518
|
189836
|
209193
|
209197
| 296341 |
448628
|
448630
|
448632
|
448636
|
450204