summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Kursawe <phosphan@gentoo.org>2003-06-24 09:36:12 +0000
committerPatrick Kursawe <phosphan@gentoo.org>2003-06-24 09:36:12 +0000
commit2b156ae51fd1c6a36b864c6eeaa9f2151db7db2d (patch)
tree756fe4b28f9736aad6d7f430159924b06d865820 /x11-misc
parentversion bump, forgot to commit yesterday - closes bug 23361 (diff)
downloadhistorical-2b156ae51fd1c6a36b864c6eeaa9f2151db7db2d.tar.gz
historical-2b156ae51fd1c6a36b864c6eeaa9f2151db7db2d.tar.bz2
historical-2b156ae51fd1c6a36b864c6eeaa9f2151db7db2d.zip
version bump, forgot to commit yesterday - closes bug 23361
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/icecc/Manifest4
-rw-r--r--x11-misc/icecc/files/digest-icecc-2.21
-rw-r--r--x11-misc/icecc/files/icecc-2.2.patch11
-rw-r--r--x11-misc/icecc/icecc-2.2.ebuild39
4 files changed, 53 insertions, 2 deletions
diff --git a/x11-misc/icecc/Manifest b/x11-misc/icecc/Manifest
index 213dcf811bc2..643f16ca93c2 100644
--- a/x11-misc/icecc/Manifest
+++ b/x11-misc/icecc/Manifest
@@ -1,8 +1,8 @@
MD5 82b833a9114865c3de6c61676737e051 icecc-2.1.ebuild 949
MD5 6806a2c35284ed922a910529735f0aec icecc-1.5.ebuild 614
MD5 6beb3d1bb7021baceb3c4c8f3268cccd icecc-2.0.ebuild 951
-MD5 82b833a9114865c3de6c61676737e051 icecc-2.2.ebuild 949
-MD5 084733c770f8e66a4b91523e26f88a18 ChangeLog 1423
+MD5 3c3583ea36b707b668c345847986a904 icecc-2.2.ebuild 949
+MD5 e83848076d88acad21bb07d3298641d9 ChangeLog 1562
MD5 8ffdf6aa0e2ce02cd060a956279b0f1d icecc-0.5.ebuild 725
MD5 f255bba4b714e8448420f1fee95f89bf files/icecc-2.0.patch 357
MD5 f255bba4b714e8448420f1fee95f89bf files/icecc-2.1.patch 357
diff --git a/x11-misc/icecc/files/digest-icecc-2.2 b/x11-misc/icecc/files/digest-icecc-2.2
new file mode 100644
index 000000000000..a9465f121455
--- /dev/null
+++ b/x11-misc/icecc/files/digest-icecc-2.2
@@ -0,0 +1 @@
+MD5 16b97cc868a7770aefac382689424bb6 icecc-2.2.tar.bz2 338294
diff --git a/x11-misc/icecc/files/icecc-2.2.patch b/x11-misc/icecc/files/icecc-2.2.patch
new file mode 100644
index 000000000000..855431abf148
--- /dev/null
+++ b/x11-misc/icecc/files/icecc-2.2.patch
@@ -0,0 +1,11 @@
+--- icecc/icecc.cpp 2003-04-03 22:48:22.000000000 +0200
++++ icecc/icecc.cpp.new 2003-04-14 11:27:47.000000000 +0200
+@@ -49,7 +49,7 @@
+ themeBrowser(0),
+ icewmCfgDir(getenv("ICEWM_PRIVCFG")),
+ aTools(COUNTTOOLS),
+-themeDir("/usr/local/share/icecc/themes/")
++themeDir("/usr/share/icecc/themes/")
+ {
+ setCaption(tr("IceWM Control Center " VERSION));
+
diff --git a/x11-misc/icecc/icecc-2.2.ebuild b/x11-misc/icecc/icecc-2.2.ebuild
new file mode 100644
index 000000000000..b7282097222d
--- /dev/null
+++ b/x11-misc/icecc/icecc-2.2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/icecc/icecc-2.2.ebuild,v 1.1 2003/06/24 09:36:03 phosphan Exp $
+
+DESCRIPTION="IceWM Control Center (only main program, see icewm-tools for the rest)"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+HOMEPAGE="http://icecc.sourceforge.net/"
+
+LICENSE="GPL-2"
+KEYWORDS="~x86"
+SLOT="0"
+
+DEPEND=">=x11-libs/qt-3.0.0"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ patch -p0 < ${FILESDIR}/${P}.patch || die "patch failed"
+}
+
+src_compile() {
+ econf || die
+ emake || die
+}
+
+src_install() {
+ einstall || die
+
+ rm -rf ${D}/usr/doc
+ dohtml ${PN}/docs/en/*.{html,sgml}
+ dodoc AUTHORS ChangeLog README TODO
+ dodir /usr/share/${PN}/themes
+ cp -a theme/* ${D}/usr/share/${PN}/themes/
+ chmod go-w ${D}/usr/share/${PN}/themes/
+}
+
+pkg_postinst() {
+ einfo "emerge icewm-tools for the control center helper tools"
+}