diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-26 01:57:14 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-26 01:57:14 +0000 |
commit | 0553ad6ca64c9d7f58d1b14bb7ac901e9b56a98a (patch) | |
tree | f919031305e07cb4ae795ba6c8f7de5d76a20477 /net-misc/ices/ices-0.2.3.ebuild | |
parent | masked out gnustep stuff from gcc-2 profile (diff) | |
download | gentoo-2-0553ad6ca64c9d7f58d1b14bb7ac901e9b56a98a.tar.gz gentoo-2-0553ad6ca64c9d7f58d1b14bb7ac901e9b56a98a.tar.bz2 gentoo-2-0553ad6ca64c9d7f58d1b14bb7ac901e9b56a98a.zip |
typo fix
Diffstat (limited to 'net-misc/ices/ices-0.2.3.ebuild')
-rw-r--r-- | net-misc/ices/ices-0.2.3.ebuild | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/net-misc/ices/ices-0.2.3.ebuild b/net-misc/ices/ices-0.2.3.ebuild index 960f6fc849e3..30a9e3710a1b 100644 --- a/net-misc/ices/ices-0.2.3.ebuild +++ b/net-misc/ices/ices-0.2.3.ebuild @@ -1,14 +1,15 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-misc/ices/ices-0.2.3.ebuild,v 1.1 2002/07/25 20:41:39 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/ices/ices-0.2.3.ebuild,v 1.2 2002/07/26 01:57:14 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="icecast MP3 streaming client. supports on the fly re-encoding" SRC_URI="http://www.icecast.org/releases/${P}.tar.gz" HOMEPAGE="http://www.icecast.org" -LICENSE="GPL" -KEYWORDS="x86 -ppc -sparc -sparc64" + SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 -ppc -sparc -sparc64" DEPEND="net-misc/icecast media-sound/lame @@ -18,7 +19,7 @@ src_unpack () { unpack ${A} cd ${S} - patch -p1 < ${FILESDIR}/docdir.diff + patch -p1 < ${FILESDIR}/docdir.diff || die } src_compile () @@ -27,15 +28,11 @@ src_compile () #use python && myconf="--with-python-includes=/usr/include/python2.2/" use perl && myconf=${myconf}" --with-perl" - if [ "`use oggvorbis`" ]; then - myconf="${myconf} --with-vorbis=/usr/lib - fi + use oggvorbis \ + && myconf="${myconf} --with-vorbis=/usr/lib" - ./configure --prefix=/usr \ + econf \ --sysconfdir=/etc/ices \ - --mandir=/usr/share/man \ - --localstatedir=/var \ - --host=${CHOST} \ --with-lame \ ${myconf} || die "configure failed" @@ -48,4 +45,3 @@ src_install () make DESTDIR=${D} install || die "make install failed" } - |