diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-11-02 20:55:09 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-11-02 20:55:09 +0000 |
commit | 64cd04c522f5bd041faa3716141d1f6d5b0c843c (patch) | |
tree | fa17f19da4b2bab2f71cec34e384948a727f12ad /net-libs/iax/iax-0.2.2.ebuild | |
parent | sonypid version updated (diff) | |
download | gentoo-2-64cd04c522f5bd041faa3716141d1f6d5b0c843c.tar.gz gentoo-2-64cd04c522f5bd041faa3716141d1f6d5b0c843c.tar.bz2 gentoo-2-64cd04c522f5bd041faa3716141d1f6d5b0c843c.zip |
Initial ebuild added to portage. See bug #7724
Diffstat (limited to 'net-libs/iax/iax-0.2.2.ebuild')
-rw-r--r-- | net-libs/iax/iax-0.2.2.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/net-libs/iax/iax-0.2.2.ebuild b/net-libs/iax/iax-0.2.2.ebuild new file mode 100644 index 000000000000..120f0bea4eeb --- /dev/null +++ b/net-libs/iax/iax-0.2.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/iax/iax-0.2.2.ebuild,v 1.1 2002/11/02 20:55:09 raker Exp $ + +IUSE="" + +DESCRIPTION="IAX (Inter Asterisk eXchange) Library" +HOMEPAGE="http://www.digium.com/" +LICENSE="LGPL-2" +DEPEND="virtual/glibc" +RDEPEND="virtual/glibc" +SLOT="0" +SRC_URI="http://www.digium.com/pub/libiax/${P}.tar.gz" + +S=${WORKDIR}/${P} + +D_PREFIX=/usr + +KEYWORDS="x86" + +src_compile() { + ./configure --prefix=${D_PREFIX} --enable-autoupdate + + export UCFLAGS="${CFLAGS}" + + emake || die +} + +src_install () { + make prefix=${D}/${D_PREFIX} install + dodoc NEWS COPYING AUTHORS README +} |