diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2004-07-27 12:10:20 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2004-07-27 12:10:20 +0000 |
commit | 954a3433c49daa642d375eefeeafe95b5660e867 (patch) | |
tree | dcc91052b18973872bd9f2239ffd51bb33c24050 /x11-misc/icecc | |
parent | Moving enewgroup where it belongs (Manifest recommit) (diff) | |
download | gentoo-2-954a3433c49daa642d375eefeeafe95b5660e867.tar.gz gentoo-2-954a3433c49daa642d375eefeeafe95b5660e867.tar.bz2 gentoo-2-954a3433c49daa642d375eefeeafe95b5660e867.zip |
Version bump, build procedure changed.
Diffstat (limited to 'x11-misc/icecc')
-rw-r--r-- | x11-misc/icecc/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/icecc/Manifest | 2 | ||||
-rw-r--r-- | x11-misc/icecc/files/digest-icecc-2.7 | 1 | ||||
-rw-r--r-- | x11-misc/icecc/icecc-2.7.ebuild | 46 |
4 files changed, 55 insertions, 1 deletions
diff --git a/x11-misc/icecc/ChangeLog b/x11-misc/icecc/ChangeLog index d87f7d37dd34..7d8321951bbe 100644 --- a/x11-misc/icecc/ChangeLog +++ b/x11-misc/icecc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/icecc # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/icecc/ChangeLog,v 1.16 2004/06/24 22:22:42 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/icecc/ChangeLog,v 1.17 2004/07/27 12:10:20 phosphan Exp $ + +*icecc-2.7 (27 Jul 2004) + + 27 Jul 2004; Patrick Kursawe <phosphan@gentoo.org> +icecc-2.7.ebuild: + Version bump, build procedure changed. 24 Mar 2004; Patrick Kursawe <phosphan@gentoo.org> icecc-2.6.ebuild: Adding IUSE diff --git a/x11-misc/icecc/Manifest b/x11-misc/icecc/Manifest index 9870a738079a..1430dbdd8600 100644 --- a/x11-misc/icecc/Manifest +++ b/x11-misc/icecc/Manifest @@ -1,4 +1,6 @@ MD5 e5c2c162a4b3872443adeb1d9e69412f icecc-2.6.ebuild 865 +MD5 ad5c998475a2bca0567f027dc8e747a7 icecc-2.7.ebuild 866 MD5 9fe96355fe0fcc5b3133e4d8b1d1fbe5 ChangeLog 2321 MD5 b742040acaeddc3798a21739bd59e8aa metadata.xml 224 MD5 c9deb0796c495d5949d555279ee0118c files/digest-icecc-2.6 62 +MD5 244444410e3a9581e702d14c36fecedd files/digest-icecc-2.7 62 diff --git a/x11-misc/icecc/files/digest-icecc-2.7 b/x11-misc/icecc/files/digest-icecc-2.7 new file mode 100644 index 000000000000..df5174a5c874 --- /dev/null +++ b/x11-misc/icecc/files/digest-icecc-2.7 @@ -0,0 +1 @@ +MD5 37e42df7d0a7067d1b863933d88b2a46 icecc-2.7.tar.bz2 120701 diff --git a/x11-misc/icecc/icecc-2.7.ebuild b/x11-misc/icecc/icecc-2.7.ebuild new file mode 100644 index 000000000000..ea76e7c20ea2 --- /dev/null +++ b/x11-misc/icecc/icecc-2.7.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/icecc/icecc-2.7.ebuild,v 1.1 2004/07/27 12:10:20 phosphan Exp $ + +inherit eutils + +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" +IUSE="" +SLOT="0" + +DEPEND=">=x11-libs/qt-3.0.0" + +src_unpack() { + unpack ${A} + cd ${S} + sed -e "s:/usr/local:${D}/usr:" -i ${PN}.pro || die "sed failed" + local file + for file in *.cpp; do + sed -e 's:PREFIX:"/usr":' -i ${file} + done +} + +src_compile() { + qmake || 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" +} |