summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Kursawe <phosphan@gentoo.org>2004-08-27 06:39:32 +0000
committerPatrick Kursawe <phosphan@gentoo.org>2004-08-27 06:39:32 +0000
commit3bf8c65298e5ea64c3c1867f1a2ad3570a4f20e8 (patch)
tree75105538e6dc3ba06ff22f7e4914f05c27fb9edd /x11-misc
parent (Manifest recommit) (diff)
downloadgentoo-2-3bf8c65298e5ea64c3c1867f1a2ad3570a4f20e8.tar.gz
gentoo-2-3bf8c65298e5ea64c3c1867f1a2ad3570a4f20e8.tar.bz2
gentoo-2-3bf8c65298e5ea64c3c1867f1a2ad3570a4f20e8.zip
version bump
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/icesndcfg/ChangeLog7
-rw-r--r--x11-misc/icesndcfg/Manifest2
-rw-r--r--x11-misc/icesndcfg/files/digest-icesndcfg-1.31
-rw-r--r--x11-misc/icesndcfg/icesndcfg-1.3.ebuild34
4 files changed, 43 insertions, 1 deletions
diff --git a/x11-misc/icesndcfg/ChangeLog b/x11-misc/icesndcfg/ChangeLog
index 30b2e9385b50..3b1c098f6972 100644
--- a/x11-misc/icesndcfg/ChangeLog
+++ b/x11-misc/icesndcfg/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-misc/icesndcfg
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/icesndcfg/ChangeLog,v 1.10 2004/06/24 22:24:07 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/icesndcfg/ChangeLog,v 1.11 2004/08/27 06:39:32 phosphan Exp $
+
+*icesndcfg-1.3 (27 Aug 2004)
+
+ 27 Aug 2004; Patrick Kursawe <phosphan@gentoo.org> +icesndcfg-1.3.ebuild:
+ version bump: build procedure changed, using C*FLAGS now
19 Jun 2004; David Holm <dholm@gentoo.org> icesndcfg-1.1.ebuild:
Added to ~ppc.
diff --git a/x11-misc/icesndcfg/Manifest b/x11-misc/icesndcfg/Manifest
index 0944b885979f..3545af51cd85 100644
--- a/x11-misc/icesndcfg/Manifest
+++ b/x11-misc/icesndcfg/Manifest
@@ -1,4 +1,6 @@
MD5 d77344e96b281749425e03ff03984168 icesndcfg-1.1.ebuild 621
+MD5 694ba6555ed5ba1c4914681245e22982 icesndcfg-1.3.ebuild 623
MD5 242e55bfbe55f9e60e85d44014db4785 ChangeLog 1097
MD5 b742040acaeddc3798a21739bd59e8aa metadata.xml 224
MD5 32a90c4b4c8add7fc091909eb59aedb0 files/digest-icesndcfg-1.1 66
+MD5 4331794b294cb0cd3703240790445b0d files/digest-icesndcfg-1.3 65
diff --git a/x11-misc/icesndcfg/files/digest-icesndcfg-1.3 b/x11-misc/icesndcfg/files/digest-icesndcfg-1.3
new file mode 100644
index 000000000000..6b22953b3fc8
--- /dev/null
+++ b/x11-misc/icesndcfg/files/digest-icesndcfg-1.3
@@ -0,0 +1 @@
+MD5 2113c524ebbbf38ce7eb174b9997c202 icesndcfg-1.3.tar.bz2 11404
diff --git a/x11-misc/icesndcfg/icesndcfg-1.3.ebuild b/x11-misc/icesndcfg/icesndcfg-1.3.ebuild
new file mode 100644
index 000000000000..2bdcf8dfeaae
--- /dev/null
+++ b/x11-misc/icesndcfg/icesndcfg-1.3.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/icesndcfg/icesndcfg-1.3.ebuild,v 1.1 2004/08/27 06:39:32 phosphan Exp $
+
+IUSE=""
+
+DESCRIPTION="IceWM sound editor."
+SRC_URI="mirror://sourceforge/icecc/${P}.tar.bz2"
+HOMEPAGE="http://icecc.sourceforge.net/"
+
+DEPEND="virtual/x11
+ >=x11-libs/qt-3.0.0"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="x86 sparc ~ppc"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ sed -e "s:/usr/local:/usr:" -i ${PN}.pro || die "sed failed"
+ echo >> ${PN}.pro -e "QMAKE_CXXFLAGS_RELEASE += ${CXXFLAGS}\nQMAKE_CFLAGS_RELEASE += ${CFLAGS}"
+}
+
+src_compile () {
+ addwrite ${QTDIR}/etc/settings
+ qmake ${PN}.pro
+ emake || die
+}
+
+src_install () {
+ make INSTALL_ROOT="${D}" install || die
+ dodoc AUTHORS COPYING TODO README ChangeLog
+}