diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-06-11 15:14:07 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-06-11 15:14:07 +0000 |
commit | 57391171f85f8a6f9d0e7ad83cf7ba380ff501f7 (patch) | |
tree | 3481a99c7a8e4face33d64eea7e81679f3c1469a /x11-misc/icets | |
parent | new package (diff) | |
download | historical-57391171f85f8a6f9d0e7ad83cf7ba380ff501f7.tar.gz historical-57391171f85f8a6f9d0e7ad83cf7ba380ff501f7.tar.bz2 historical-57391171f85f8a6f9d0e7ad83cf7ba380ff501f7.zip |
new package
Diffstat (limited to 'x11-misc/icets')
-rw-r--r-- | x11-misc/icets/ChangeLog | 10 | ||||
-rw-r--r-- | x11-misc/icets/files/digest-icets-0.8 | 1 | ||||
-rw-r--r-- | x11-misc/icets/icets-0.8.ebuild | 41 |
3 files changed, 52 insertions, 0 deletions
diff --git a/x11-misc/icets/ChangeLog b/x11-misc/icets/ChangeLog new file mode 100644 index 000000000000..8d6bab69c1bb --- /dev/null +++ b/x11-misc/icets/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for x11-misc/icets +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/icets/ChangeLog,v 1.1 2002/06/11 15:14:07 seemant Exp $ + +*icets-0.8 (11 Jun 2002) + + 11 Jun 2002; Seemant Kulleen <seemant@gentoo.org> icets-0.8.ebuild + ChangeLog files/digest-icets-0.8 : + + New package submitted by: Jeepster@gmx.co.uk in bug #2342 diff --git a/x11-misc/icets/files/digest-icets-0.8 b/x11-misc/icets/files/digest-icets-0.8 new file mode 100644 index 000000000000..1d92bd6f3344 --- /dev/null +++ b/x11-misc/icets/files/digest-icets-0.8 @@ -0,0 +1 @@ +MD5 93bde7e212c091759b0259c3c7fc08ad icets-0.8.tar.bz2 233000 diff --git a/x11-misc/icets/icets-0.8.ebuild b/x11-misc/icets/icets-0.8.ebuild new file mode 100644 index 000000000000..c0362c626ac0 --- /dev/null +++ b/x11-misc/icets/icets-0.8.ebuild @@ -0,0 +1,41 @@ +# Copyright 2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/x11-misc/icets/icets-0.8.ebuild,v 1.1 2002/06/11 15:14:07 seemant Exp $ + +MY_P=${P/./} +S=${WORKDIR}/${MY_P} +DESCRIPTION="IceWM Theme Editor." +SRC_URI="http://www.selena.kherson.ua/xvadim/${P}.tar.bz2" +HOMEPAGE="http://www.selena.kherson.ua/xvadim" + +DEPEND="virtual/x11 + x11-libs/qt + media-libs/jpeg + media-libs/libpng" + +#RDEPEND="x11-wm/icewm" + +src_unpack() { + + unpack ${A} + cd ${S}/${PN} + + # Change the default directory that it looks into to be consistent + # with Gentoo's layout + cp icets.cpp icets.cpp.orig + sed "s:/usr/local/lib/X11/icewm/themes:/usr/lib/icewm/themes:" \ + icets.cpp.orig > icets.cpp +} + +src_compile () { + econf --with-qt-dir=${QTDIR} || die + emake || die +} + +src_install () { + einstall || die + + rm -rf ${D}/usr/doc + dohtml icets/docs/en/*.{html,sgml} + dodoc AUTHORS COPYING ChangeLog README TODO +} |