diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-04-06 20:51:57 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-04-06 20:51:57 +0000 |
commit | 3981eba2ed81c0c864376533adb46555ac2268e8 (patch) | |
tree | d9cceba1fd2facc57127cf8c79dbc3ed1b38bda3 /x11-wm | |
parent | Initial Version (diff) | |
download | historical-3981eba2ed81c0c864376533adb46555ac2268e8.tar.gz historical-3981eba2ed81c0c864376533adb46555ac2268e8.tar.bz2 historical-3981eba2ed81c0c864376533adb46555ac2268e8.zip |
Initial Version
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/ion-dock/files/digest-ion-dock-20030327 | 2 | ||||
-rw-r--r-- | x11-wm/ion-dock/ion-dock-20030327.ebuild | 39 |
2 files changed, 40 insertions, 1 deletions
diff --git a/x11-wm/ion-dock/files/digest-ion-dock-20030327 b/x11-wm/ion-dock/files/digest-ion-dock-20030327 index b27ad85bd7c9..06d11fe2c4b4 100644 --- a/x11-wm/ion-dock/files/digest-ion-dock-20030327 +++ b/x11-wm/ion-dock/files/digest-ion-dock-20030327 @@ -1,3 +1,3 @@ -MD5 e75de7bd79a88da97cee04e40acf9dc8 /ion-dock-20030327.ebuild 1136 +MD5 d4ba82806e551925e7285f96a0519456 /ion-dock-20030327.ebuild 1240 MD5 5605f618bed841658708f947821ec0a7 ion-devel-20030327.tar.gz 203669 MD5 355e6233bc52486d33a1a2290040ee5c ion-dock-20030327.tar.gz 7714 diff --git a/x11-wm/ion-dock/ion-dock-20030327.ebuild b/x11-wm/ion-dock/ion-dock-20030327.ebuild new file mode 100644 index 000000000000..6c2796b09f8e --- /dev/null +++ b/x11-wm/ion-dock/ion-dock-20030327.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-wm/ion-dock/ion-dock-20030327.ebuild,v 1.1 2003/04/06 20:51:25 mholzer Exp $ + +ION_VERSION=20030327 +inherit ion + +DESCRIPTION="A dock module for the window manager Ion" +HOMEPAGE="http://kanin.dsv.su.se/ion/dock/" +SRC_URI="${SRC_URI} http://kanin.dsv.su.se/ion/dock/${P}.tar.gz" +LICENSE="Clarified-Artistic" +SLOT="0" +KEYWORDS="~x86" +IUSE="truetype" +DEPEND="${DEPEND} =x11-wm/ion-devel-${ION_VERSION}*" + +src_compile() { + + ion_src_configure ${WORKDIR}/ion-devel-${ION_VERSION} + + cp Makefile Makefile.orig + sed -e "s:^ION_DIR = /usr/include/ion-devel:ION_DIR=${WORKDIR}/ion-devel-${ION_VERSION}:" \ + -e "s/^CFLAGS := -g -O2 -fPIC \$(WARN) \$(DEFINES) \$(INCLUDES) \$(X11_INCLUDES) \\\\/CFLAGS := ${CFLAGS} -fPIC \$(WARN) \$(DEFINES) \$(INCLUDES) \$(X11_INCLUDES) \\\\/" \ + Makefile.orig > Makefile + + emake || die + +} + +src_install() { + dodir /etc/X11/ion-devel + dodir /usr/lib/ion-devel + make PREFIX=${D}/usr ETCDIR=${D}/etc/X11 LIBDIR=${D}/usr/lib install || die + dodoc README ChangeLog +} + +pkg_postinst() { + einfo "To enable ion-dock add \"module \"dock\"\" to ~/.ion-devel/ioncore.conf" +} |