diff options
author | 2002-05-24 02:57:19 +0000 | |
---|---|---|
committer | 2002-05-24 02:57:19 +0000 | |
commit | 5037b8e26bc854492cd9f2e6ec50a21d50f56d27 (patch) | |
tree | 9c3165b5332f8451fe890bb6ce1ea2d5fae3799c /media-sound | |
parent | Removed older revisions. (diff) | |
download | historical-5037b8e26bc854492cd9f2e6ec50a21d50f56d27.tar.gz historical-5037b8e26bc854492cd9f2e6ec50a21d50f56d27.tar.bz2 historical-5037b8e26bc854492cd9f2e6ec50a21d50f56d27.zip |
New package
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/gamix/ChangeLog | 13 | ||||
-rw-r--r-- | media-sound/gamix/files/digest-gamix-1.99_p13 | 1 | ||||
-rw-r--r-- | media-sound/gamix/gamix-1.99_p13.ebuild | 36 |
3 files changed, 50 insertions, 0 deletions
diff --git a/media-sound/gamix/ChangeLog b/media-sound/gamix/ChangeLog new file mode 100644 index 000000000000..e6758f5273e2 --- /dev/null +++ b/media-sound/gamix/ChangeLog @@ -0,0 +1,13 @@ +# ChangeLog for media-sound/gamix +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/media-sound/gamix/ChangeLog,v 1.1 2002/05/24 02:57:19 rphillips Exp $ + +*gamix-1.99_p13 (19 May 2002) + + 19 May 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. diff --git a/media-sound/gamix/files/digest-gamix-1.99_p13 b/media-sound/gamix/files/digest-gamix-1.99_p13 new file mode 100644 index 000000000000..0e80715adecb --- /dev/null +++ b/media-sound/gamix/files/digest-gamix-1.99_p13 @@ -0,0 +1 @@ +MD5 86a6b2fb912816620f8b817030406d31 gamix-1.99.p13.tar.gz 409822 diff --git a/media-sound/gamix/gamix-1.99_p13.ebuild b/media-sound/gamix/gamix-1.99_p13.ebuild new file mode 100644 index 000000000000..ab6d14dbb993 --- /dev/null +++ b/media-sound/gamix/gamix-1.99_p13.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/gamix/gamix-1.99_p13.ebuild,v 1.1 2002/05/24 02:57:19 rphillips Exp $ + +P_V=${P/_p/.p} +S=${WORKDIR}/${P_V} +DESCRIPTION="GTK ALSA audio mixer gamix by Fumihiko Murata <fmurata@p1.tcnet.ne.jp>" +SRC_URI="http://www1.tcnet.ne.jp/fmurata/linux/down/${P_V}.tar.gz" +HOMEPAGE="http://www1.tcnet.ne.jp/fmurata/linux/down" +LICENSE="GPL-2" + +DEPEND="virtual/glibc + >=media-sound/alsa-driver-0.9_rc1 + >=media-libs/alsa-lib-0.9_rc1 + x11-libs/gtk+ + dev-libs/glib" +SLOT="0" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + emake || die +} + +src_install () { + make \ + prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + install || die + dodoc README README.euc TODO NEWS INSTALL AUTHORS ABOUT-NLS COPYING +} + |