summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Kursawe <phosphan@gentoo.org>2004-08-27 07:36:49 +0000
committerPatrick Kursawe <phosphan@gentoo.org>2004-08-27 07:36:49 +0000
commitfcaaea5faf1d842ed4d642a5a9692c40cf5a1826 (patch)
tree0f4f5d474685588632d6d6b46f066bccf53c4a94 /x11-misc
parentversion bump (Manifest recommit) (diff)
downloadgentoo-2-fcaaea5faf1d842ed4d642a5a9692c40cf5a1826.tar.gz
gentoo-2-fcaaea5faf1d842ed4d642a5a9692c40cf5a1826.tar.bz2
gentoo-2-fcaaea5faf1d842ed4d642a5a9692c40cf5a1826.zip
version bump
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/icets/ChangeLog7
-rw-r--r--x11-misc/icets/Manifest2
-rw-r--r--x11-misc/icets/files/digest-icets-1.41
-rw-r--r--x11-misc/icets/icets-1.4.ebuild37
4 files changed, 46 insertions, 1 deletions
diff --git a/x11-misc/icets/ChangeLog b/x11-misc/icets/ChangeLog
index 12dbed06a10a..058774b2af59 100644
--- a/x11-misc/icets/ChangeLog
+++ b/x11-misc/icets/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-misc/icets
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/icets/ChangeLog,v 1.14 2004/08/27 05:44:55 phosphan Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/icets/ChangeLog,v 1.15 2004/08/27 07:36:49 phosphan Exp $
+
+*icets-1.4 (27 Aug 2004)
+
+ 27 Aug 2004; Patrick Kursawe <phosphan@gentoo.org> +icets-1.4.ebuild:
+ version bump, using C*FLAGS now
27 Aug 2004; Patrick Kursawe <phosphan@gentoo.org> icets-1.2.ebuild:
stable for x86
diff --git a/x11-misc/icets/Manifest b/x11-misc/icets/Manifest
index 4aad8094753d..aade2e96996b 100644
--- a/x11-misc/icets/Manifest
+++ b/x11-misc/icets/Manifest
@@ -1,6 +1,8 @@
+MD5 9cc038f93d1a1d2c8af651423d731983 icets-1.4.ebuild 958
MD5 68fe7079ccb812b32272595f0dcf1e8f icets-1.1.ebuild 869
MD5 856b327a135a5d60ee7ba3b7604fec50 icets-1.2.ebuild 860
MD5 82609919b98b4cee9a05fb347e8ebbf7 ChangeLog 1556
MD5 b742040acaeddc3798a21739bd59e8aa metadata.xml 224
MD5 2b2bb51a215b1b08030e0b71b477f47d files/digest-icets-1.1 62
MD5 d7eea449a4f164cbf4c3eb2a0ec14cb4 files/digest-icets-1.2 61
+MD5 06d9efadd30d1f6502e3817319bb6cca files/digest-icets-1.4 61
diff --git a/x11-misc/icets/files/digest-icets-1.4 b/x11-misc/icets/files/digest-icets-1.4
new file mode 100644
index 000000000000..d306a10c1da5
--- /dev/null
+++ b/x11-misc/icets/files/digest-icets-1.4
@@ -0,0 +1 @@
+MD5 1d87c93f5cb27da16c90f47531b7fb21 icets-1.4.tar.bz2 11098
diff --git a/x11-misc/icets/icets-1.4.ebuild b/x11-misc/icets/icets-1.4.ebuild
new file mode 100644
index 000000000000..5adf659ebadd
--- /dev/null
+++ b/x11-misc/icets/icets-1.4.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/icets/icets-1.4.ebuild,v 1.1 2004/08/27 07:36:49 phosphan Exp $
+
+DESCRIPTION="IceWM Theme Editor"
+SRC_URI="mirror://sourceforge/icecc/${P}.tar.bz2"
+HOMEPAGE="http://icecc.sourceforge.net/"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~ppc"
+IUSE=""
+
+RDEPEND=">=x11-libs/qt-3.0.0"
+DEPEND="${RDEPEND}
+ >=sys-apps/sed-4"
+
+src_unpack() {
+
+ unpack ${A}
+ cd ${S}
+ sed -e "s:/usr/local/bin:/usr/bin:" -i ${PN}.pro || die "sed failed"
+ sed -e 's:/usr/local/share:/usr/share:g' -i ${PN}.cpp || die "sed failed"
+ echo >> ${PN}.pro -e "QMAKE_CXXFLAGS_RELEASE += ${CXXFLAGS}\nQMAKE_CFLAGS_RELEASE += ${CFLAGS}"
+}
+
+src_compile () {
+ qmake || die
+ emake || die
+}
+
+src_install () {
+ make INSTALL_ROOT="${D}" install || die
+
+ rm -rf ${D}/usr/doc
+ dohtml icets/docs/en/*.{html,sgml}
+ dodoc AUTHORS COPYING ChangeLog README TODO
+}