summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2003-02-13 06:03:43 +0000
committerSeemant Kulleen <seemant@gentoo.org>2003-02-13 06:03:43 +0000
commit59ccbabd0e8534bfc747f296f1a9138985afb629 (patch)
treecf6ea0ecf4cce6759bb0b2f0ef9992287cc92a4e /net-libs
parentUpdate Copyright years (diff)
downloadgentoo-2-59ccbabd0e8534bfc747f296f1a9138985afb629.tar.gz
gentoo-2-59ccbabd0e8534bfc747f296f1a9138985afb629.tar.bz2
gentoo-2-59ccbabd0e8534bfc747f296f1a9138985afb629.zip
swedishchef fixes
Diffstat (limited to 'net-libs')
-rw-r--r--net-libs/libosip/ChangeLog6
-rw-r--r--net-libs/libosip/libosip-0.8.8.ebuild20
2 files changed, 15 insertions, 11 deletions
diff --git a/net-libs/libosip/ChangeLog b/net-libs/libosip/ChangeLog
index 9161fd93178b..194acb2741f0 100644
--- a/net-libs/libosip/ChangeLog
+++ b/net-libs/libosip/ChangeLog
@@ -1,9 +1,13 @@
# ChangeLog for net-libs/libosip
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header:
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libosip/ChangeLog,v 1.3 2003/02/13 06:03:43 seemant Exp $
*libosip-0.8.8 (27 aug 2002)
+ 12 Feb 2003; Seemant Kulleen <seemant@gentoo.org> libosip-0.8.8.ebuild :
+
+ Moved to stable x86 (swedish chef). Also cleaned up syntax and spacing
+
27 Aug 2002; Paul Belt <gaarde@gentoo.org> :
Added initial ChangeLog which should be updated whenever the package is
diff --git a/net-libs/libosip/libosip-0.8.8.ebuild b/net-libs/libosip/libosip-0.8.8.ebuild
index 0c0026e5c1ed..57758eb7f9ab 100644
--- a/net-libs/libosip/libosip-0.8.8.ebuild
+++ b/net-libs/libosip/libosip-0.8.8.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libosip/libosip-0.8.8.ebuild,v 1.2 2002/11/02 10:41:14 seemant Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libosip/libosip-0.8.8.ebuild,v 1.3 2003/02/13 06:03:43 seemant Exp $
DESCRIPTION="This is the oSIP library (for Open SIP). It has been designed to provide the Internet Community a simple way to support the Session Initiation Protocol. SIP is described in the RFC2543 which is available at http://www.ietf.org/rfc/rfc2543.txt."
HOMEPAGE="http://www.linphone.org/?lang=us"
@@ -8,20 +8,20 @@ SRC_URI="http://www.linphone.org/download/${P}.tar.gz"
SLOT="1"
LICENSE="LGPL-2"
-KEYWORDS="~x86"
+KEYWORDS="x86"
DEPEND="virtual/glibc"
src_compile() {
- EXTRA_FLAGS=''
+ local myconf
- if use pic; then
- flags="${flags} --with-pic";
- else
- flags="${flags} --without-pic"
- fi
+ if use pic; then
+ myconf="${myconf} --with-pic";
+ else
+ myconf="${myconf} --without-pic"
+ fi
- econf ${EXTRA_FLAGS} || die
+ econf ${myconf} || die
emake || die
}