summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-06-11 14:50:12 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-06-11 14:50:12 +0000
commit324b541a768bc72d4baeade814631f52eb7dbcdb (patch)
treef3cb9f8b5b5edc2948e1866f9fad570af47db64c /x11-misc/icesndcfg
parentminor qpkg improvement (diff)
downloadgentoo-2-324b541a768bc72d4baeade814631f52eb7dbcdb.tar.gz
gentoo-2-324b541a768bc72d4baeade814631f52eb7dbcdb.tar.bz2
gentoo-2-324b541a768bc72d4baeade814631f52eb7dbcdb.zip
new package
Diffstat (limited to 'x11-misc/icesndcfg')
-rw-r--r--x11-misc/icesndcfg/ChangeLog10
-rw-r--r--x11-misc/icesndcfg/files/digest-icesndcfg-0.81
-rw-r--r--x11-misc/icesndcfg/icesndcfg-0.8.ebuild38
3 files changed, 49 insertions, 0 deletions
diff --git a/x11-misc/icesndcfg/ChangeLog b/x11-misc/icesndcfg/ChangeLog
new file mode 100644
index 000000000000..81642aac41df
--- /dev/null
+++ b/x11-misc/icesndcfg/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for x11-misc/icesndcfg
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/icesndcfg/ChangeLog,v 1.1 2002/06/11 14:50:12 seemant Exp $
+
+*icesndcfg-0.8 (11 Jun 2002)
+
+ 11 Jun 2002; Seemant Kulleen <seemant@gentoo.org> icesndcfg-0.8.ebuild
+ ChangeLog files/digest-icesndcfg-0.8 :
+
+ New package submitted by: Jeepster@gmx.co.uk in bug #2342
diff --git a/x11-misc/icesndcfg/files/digest-icesndcfg-0.8 b/x11-misc/icesndcfg/files/digest-icesndcfg-0.8
new file mode 100644
index 000000000000..06ae532211b9
--- /dev/null
+++ b/x11-misc/icesndcfg/files/digest-icesndcfg-0.8
@@ -0,0 +1 @@
+MD5 e636114a659b80bce22ae83d480a9a66 icesndcfg-0.8.tar.bz2 94482
diff --git a/x11-misc/icesndcfg/icesndcfg-0.8.ebuild b/x11-misc/icesndcfg/icesndcfg-0.8.ebuild
new file mode 100644
index 000000000000..c18d76a5179d
--- /dev/null
+++ b/x11-misc/icesndcfg/icesndcfg-0.8.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/icesndcfg/icesndcfg-0.8.ebuild,v 1.1 2002/06/11 14:50:12 seemant Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="IceWM sound editor."
+SRC_URI="http://www.selena.kherson.ua/xvadim/${P}.tar.bz2"
+HOMEPAGE="http://www.selena.kherson.ua/xvadim"
+
+DEPEND="virtual/x11
+ =x11-libs/gtk+-1.2*
+ esd? ( media-sound/esound )"
+
+#RDEPEND="x11-wm/icewm
+# nls? ( sys-devel/gettext )"
+
+SLOT="0"
+LICENSE="GPL-2"
+
+src_compile () {
+
+ local myconf
+
+ use nls || myconf="--disable-nls"
+ use esd \
+ && myconf="${myconf} --enable-esd" \
+ || myconf="${myconf} --disable-esd"
+
+ econf \
+ ${myconf} || die
+ emake || die
+}
+
+src_install () {
+ einstall || die
+
+ dodoc AUTHORS COPYING TODO README
+}