summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Kursawe <phosphan@gentoo.org>2004-08-27 06:52:42 +0000
committerPatrick Kursawe <phosphan@gentoo.org>2004-08-27 06:52:42 +0000
commit2280a7f2828867f53d7f848bbbafce38497b145a (patch)
tree48bcfcb31163e263bfb8cd490f979e956d47d68c /x11-misc/iceked
parent (Manifest recommit) (diff)
downloadgentoo-2-2280a7f2828867f53d7f848bbbafce38497b145a.tar.gz
gentoo-2-2280a7f2828867f53d7f848bbbafce38497b145a.tar.bz2
gentoo-2-2280a7f2828867f53d7f848bbbafce38497b145a.zip
version bump
Diffstat (limited to 'x11-misc/iceked')
-rw-r--r--x11-misc/iceked/ChangeLog7
-rw-r--r--x11-misc/iceked/Manifest4
-rw-r--r--x11-misc/iceked/files/digest-iceked-1.51
-rw-r--r--x11-misc/iceked/iceked-1.5.ebuild32
4 files changed, 42 insertions, 2 deletions
diff --git a/x11-misc/iceked/ChangeLog b/x11-misc/iceked/ChangeLog
index 0712bc9a8d44..53d4f70311a2 100644
--- a/x11-misc/iceked/ChangeLog
+++ b/x11-misc/iceked/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-misc/iceked
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/iceked/ChangeLog,v 1.9 2004/08/03 11:25:08 dholm Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/iceked/ChangeLog,v 1.10 2004/08/27 06:52:42 phosphan Exp $
+
+*iceked-1.5 (27 Aug 2004)
+
+ 27 Aug 2004; Patrick Kursawe <phosphan@gentoo.org> +iceked-1.5.ebuild:
+ version bump: build procedure changed, using C*FLAGS now
03 Aug 2004; David Holm <dholm@gentoo.org> iceked-1.3.ebuild:
Added to ~ppc.
diff --git a/x11-misc/iceked/Manifest b/x11-misc/iceked/Manifest
index 30e6991c41ec..53b4791e3146 100644
--- a/x11-misc/iceked/Manifest
+++ b/x11-misc/iceked/Manifest
@@ -1,4 +1,6 @@
-MD5 2466f8e40ce2af8670b3f7d033f24874 ChangeLog 1042
MD5 1e7ef1aec33ead202c2a1d8380653765 iceked-1.3.ebuild 602
+MD5 9712f82509dfbc2657aa079873a6e0d8 iceked-1.5.ebuild 861
+MD5 2466f8e40ce2af8670b3f7d033f24874 ChangeLog 1042
MD5 b742040acaeddc3798a21739bd59e8aa metadata.xml 224
MD5 5338b4bb56c215536bc5c13b5fd7538b files/digest-iceked-1.3 63
+MD5 2ae8aa32986a729f3df38a7426ca2565 files/digest-iceked-1.5 62
diff --git a/x11-misc/iceked/files/digest-iceked-1.5 b/x11-misc/iceked/files/digest-iceked-1.5
new file mode 100644
index 000000000000..da23f9e3c627
--- /dev/null
+++ b/x11-misc/iceked/files/digest-iceked-1.5
@@ -0,0 +1 @@
+MD5 47761a8dc59880ddda2a00de9cd187f5 iceked-1.5.tar.bz2 16262
diff --git a/x11-misc/iceked/iceked-1.5.ebuild b/x11-misc/iceked/iceked-1.5.ebuild
new file mode 100644
index 000000000000..cfe518ddf5d3
--- /dev/null
+++ b/x11-misc/iceked/iceked-1.5.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/iceked/iceked-1.5.ebuild,v 1.1 2004/08/27 06:52:42 phosphan Exp $
+
+DESCRIPTION="IceWM keys editor"
+SRC_URI="mirror://sourceforge/icecc/${P}.tar.bz2"
+HOMEPAGE="http://icecc.sourceforge.net/"
+LICENSE="GPL-2"
+IUSE=""
+KEYWORDS="~x86 ~ppc"
+
+DEPEND=">=x11-libs/qt-3.0.0"
+
+SLOT="0"
+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 ChangeLog README TODO
+}