diff options
-rw-r--r-- | x11-misc/icecc/Manifest | 4 | ||||
-rw-r--r-- | x11-misc/icecc/files/digest-icecc-2.3 | 1 | ||||
-rw-r--r-- | x11-misc/icecc/files/icecc-2.3.patch | 11 | ||||
-rw-r--r-- | x11-misc/icecc/icecc-2.3.ebuild | 39 |
4 files changed, 53 insertions, 2 deletions
diff --git a/x11-misc/icecc/Manifest b/x11-misc/icecc/Manifest index eb4bda25b807..92ff77a22bc9 100644 --- a/x11-misc/icecc/Manifest +++ b/x11-misc/icecc/Manifest @@ -1,9 +1,9 @@ MD5 82b833a9114865c3de6c61676737e051 icecc-2.1.ebuild 949 MD5 6806a2c35284ed922a910529735f0aec icecc-1.5.ebuild 614 -MD5 3c3583ea36b707b668c345847986a904 icecc-2.3.ebuild 949 +MD5 a39c43058b48dc22f1b19f31aa9602b7 icecc-2.3.ebuild 949 MD5 6beb3d1bb7021baceb3c4c8f3268cccd icecc-2.0.ebuild 951 MD5 3c3583ea36b707b668c345847986a904 icecc-2.2.ebuild 949 -MD5 e83848076d88acad21bb07d3298641d9 ChangeLog 1562 +MD5 5c314250791c53902f1740abbc6a08af ChangeLog 1700 MD5 8ffdf6aa0e2ce02cd060a956279b0f1d icecc-0.5.ebuild 725 MD5 f255bba4b714e8448420f1fee95f89bf files/icecc-2.3.patch 357 MD5 f255bba4b714e8448420f1fee95f89bf files/icecc-2.0.patch 357 diff --git a/x11-misc/icecc/files/digest-icecc-2.3 b/x11-misc/icecc/files/digest-icecc-2.3 new file mode 100644 index 000000000000..03cdc65431c7 --- /dev/null +++ b/x11-misc/icecc/files/digest-icecc-2.3 @@ -0,0 +1 @@ +MD5 3acf890f5ff6707b9c8b1ed54b84f6d1 icecc-2.3.tar.bz2 338718 diff --git a/x11-misc/icecc/files/icecc-2.3.patch b/x11-misc/icecc/files/icecc-2.3.patch new file mode 100644 index 000000000000..855431abf148 --- /dev/null +++ b/x11-misc/icecc/files/icecc-2.3.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.3.ebuild b/x11-misc/icecc/icecc-2.3.ebuild new file mode 100644 index 000000000000..6dd6c2aa1507 --- /dev/null +++ b/x11-misc/icecc/icecc-2.3.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.3.ebuild,v 1.1 2003/07/01 11:47:44 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" +} |