diff options
author | Bart Verwilst <verwilst@gentoo.org> | 2002-04-06 19:39:15 +0000 |
---|---|---|
committer | Bart Verwilst <verwilst@gentoo.org> | 2002-04-06 19:39:15 +0000 |
commit | 89e7f3eb48f89b188d717787b54846ca3d9e1bd2 (patch) | |
tree | 5d22926b19d39196f2db9c547f4286c07ee573fc /net-im/ickle | |
parent | masked pwlib 1.2.13 (diff) | |
download | gentoo-2-89e7f3eb48f89b188d717787b54846ca3d9e1bd2.tar.gz gentoo-2-89e7f3eb48f89b188d717787b54846ca3d9e1bd2.tar.bz2 gentoo-2-89e7f3eb48f89b188d717787b54846ca3d9e1bd2.zip |
cleaned up the ebuild a little bit, added SLOT
Diffstat (limited to 'net-im/ickle')
-rw-r--r-- | net-im/ickle/ickle-0.2.2.ebuild | 38 |
1 files changed, 8 insertions, 30 deletions
diff --git a/net-im/ickle/ickle-0.2.2.ebuild b/net-im/ickle/ickle-0.2.2.ebuild index 2dbb67806ccc..ded7438a9664 100644 --- a/net-im/ickle/ickle-0.2.2.ebuild +++ b/net-im/ickle/ickle-0.2.2.ebuild @@ -1,29 +1,21 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Maintainer: Spider <spider.gentoo@darkmere.wanfear.com> -# /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.3 2002/02/04 15:46:51 gbevin Exp +# Distributed under the terms of the GNU General Public License v2 +# Maintainer: Spider <spider@gentoo.org>, Author Bart Verwilst <verwilst@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-im/ickle/ickle-0.2.2.ebuild,v 1.4 2002/04/06 19:39:15 verwilst Exp $ S=${WORKDIR}/${P} - -# Short one-line description of this package. DESCRIPTION="ICQ 200x compatible ICQ client. limited featureset." - -# Point to any required sources; these will be automatically -# downloaded by Portage. SRC_URI="http://prdownloads.sourceforge.net/ickle/${P}.tar.gz" - -# Homepage, not used by Portage directly but handy for developer reference HOMEPAGE="http://ickle.sf.net" +SLOT="0" + DEPEND=">=x11-libs/gtk+-1.2.10 >=x11-libs/gtkmm-1.2.5 >=dev-libs/libsigc++-1.0.4 >=sys-libs/lib-compat-1.0 gnome? ( >= gnome-base/gnome-applets-1.4.0 - >= gnome-base/gnome-libs-1.4.1 )" - -# Run-time dependencies, same as DEPEND if RDEPEND isn't defined: -#RDEPEND="" + >= gnome-base/gnome-libs-1.4.1 )" src_compile() { local myflags @@ -42,25 +34,11 @@ src_compile() { --localstatedir=/var/lib \ --mandir=/usr/share/man || die "./configure failed" emake || die - #make || die + } src_install () { - # You must *personally verify* that this trick doesn't install - # anything outside of DESTDIR; do this by reading and - # understanding the install part of the Makefiles. + make DESTDIR=${D} install || die -# For Makefiles that don't make proper use of DESTDIR, setting - # prefix is often an alternative. However if you do this, then - # you also need to specify mandir and infodir, since they were - # passed to ./configure as absolute paths (overriding the prefix - # setting). - #make \ - # prefix=${D}/usr \ - # mandir=${D}/usr/share/man \ - # infodir=${D}/usr/share/info \ - # install || die - # Again, verify the Makefiles! We don't want anything falling - # outside of ${D}. } |