diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2001-01-16 05:22:23 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2001-01-16 05:22:23 +0000 |
commit | 927e7c64d039aedacac506598add2e0326edd9bd (patch) | |
tree | e8823c46b473e6283ccba834115e5226d1ef2872 | |
parent | nvidia changes (diff) | |
download | historical-927e7c64d039aedacac506598add2e0326edd9bd.tar.gz historical-927e7c64d039aedacac506598add2e0326edd9bd.tar.bz2 historical-927e7c64d039aedacac506598add2e0326edd9bd.zip |
new
-rw-r--r-- | media-sound/shorten/files/digest-shorten-3.2 | 1 | ||||
-rw-r--r-- | media-sound/shorten/shorten-3.2.ebuild | 26 | ||||
-rw-r--r-- | media-sound/xmms-arts/xmms-arts-0.4.ebuild | 27 |
3 files changed, 54 insertions, 0 deletions
diff --git a/media-sound/shorten/files/digest-shorten-3.2 b/media-sound/shorten/files/digest-shorten-3.2 new file mode 100644 index 000000000000..e8d28ad28b71 --- /dev/null +++ b/media-sound/shorten/files/digest-shorten-3.2 @@ -0,0 +1 @@ +MD5 fa70cce7245446cf6ce470cac03f9258 shorten-3.2.tar.gz diff --git a/media-sound/shorten/shorten-3.2.ebuild b/media-sound/shorten/shorten-3.2.ebuild new file mode 100644 index 000000000000..7e2073a0602a --- /dev/null +++ b/media-sound/shorten/shorten-3.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Daniel Robbins <drobbins@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-sound/shorten/shorten-3.2.ebuild,v 1.1 2001/01/16 05:22:17 drobbins Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Open source, popular and fast lossless audio compressor" +SRC_URI="http://shnutils.freeshell.org/misc/shorten-3.2.tar.gz" +DEPEND=">=sys-libs/glibc-2.1.3" + +src_unpack() { + unpack ${A} + cd ${S} + mv Makefile Makefile.orig + sed -e "s:-O:${CFLAGS}:g" -e 's:/usr/local:/usr:g' Makefile.orig > Makefile +} + +src_compile() { + try make +} + +src_install() { + try make DESTDIR=${D}/usr install + dodoc LICENSE +} + diff --git a/media-sound/xmms-arts/xmms-arts-0.4.ebuild b/media-sound/xmms-arts/xmms-arts-0.4.ebuild new file mode 100644 index 000000000000..1334e8a122ca --- /dev/null +++ b/media-sound/xmms-arts/xmms-arts-0.4.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Daniel Robbins <drobbins@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-sound/xmms-arts/xmms-arts-0.4.ebuild,v 1.1 2001/01/16 05:22:23 drobbins Exp $ + +S=${WORKDIR}/xmms-arts-0.4 +DESCRIPTION="This output plugin allows xmms to work with arts, KDE's sound system" +SRC_URI="http://home.earthlink.net/~bheath/xmms-arts/xmmsarts-0.4.tar.gz +DEPEND=">=sys-libs/glibc-2.1.3 >=media-sound/xmms-1.2.3 >=kde-base/kde-2.0.1" + +src_unpack() { + unpack ${A} + cp configure.in configure.in.orig + sed -e 's:^CFLAGS="$CFLAGS $GLIB_CFLAGS":CFLAGS="$CFLAGS $GLIB_CFLAGS -I/usr/X11R6/include":' configure.in.orig > configure.in + autoconf +} + +src_compile() { + try ./configure prefix=/usr/X11R6 + try make +} + +src_install() { + try make prefix=${D}/usr/X11R6 install + dodoc AUTHORS COPYING NEWS README +} + |