diff options
author | Ben Lutgens <lamer@gentoo.org> | 2001-07-09 01:26:28 +0000 |
---|---|---|
committer | Ben Lutgens <lamer@gentoo.org> | 2001-07-09 01:26:28 +0000 |
commit | 71497d6461f0cda5b3ef40425923cd0b5a7e9943 (patch) | |
tree | f5ddbd71348a8501ea3dc60ced1301cbd6c17b61 /x11-libs | |
parent | Ebuild for exuberant ctags, an incredibly useful tool for programmers (diff) | |
download | gentoo-2-71497d6461f0cda5b3ef40425923cd0b5a7e9943.tar.gz gentoo-2-71497d6461f0cda5b3ef40425923cd0b5a7e9943.tar.bz2 gentoo-2-71497d6461f0cda5b3ef40425923cd0b5a7e9943.zip |
I added the Xenophilia engine to gtk-engines package.
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/gtk-engines/files/digest-gtk-engines-0.12-r1 | 2 | ||||
-rw-r--r-- | x11-libs/gtk-engines/gtk-engines-0.12-r1.ebuild | 40 |
2 files changed, 42 insertions, 0 deletions
diff --git a/x11-libs/gtk-engines/files/digest-gtk-engines-0.12-r1 b/x11-libs/gtk-engines/files/digest-gtk-engines-0.12-r1 new file mode 100644 index 000000000000..ba0ef27aeadf --- /dev/null +++ b/x11-libs/gtk-engines/files/digest-gtk-engines-0.12-r1 @@ -0,0 +1,2 @@ +MD5 c867d1ebd6dbea355765d689a11330ec gtk-engines-0.12.tar.gz +MD5 c6bc873959a4ea299c0c80d10f7dd109 Xenophilia-1.2.x.tar.gz diff --git a/x11-libs/gtk-engines/gtk-engines-0.12-r1.ebuild b/x11-libs/gtk-engines/gtk-engines-0.12-r1.ebuild new file mode 100644 index 000000000000..9b48393ff16f --- /dev/null +++ b/x11-libs/gtk-engines/gtk-engines-0.12-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk-engines/gtk-engines-0.12-r1.ebuild,v 1.1 2001/07/09 01:26:28 lamer Exp $ + +A="${P}.tar.gz Xenophilia-1.2.x.tar.gz" +S=${WORKDIR}/${P} +DESCRIPTION="gtk-engines" +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/stable/sources/${PN}/${P}.tar.gz http://download.themes.org/gtk/Xenophilia-1.2.x.tar.gz" +HOMEPAGE="http://www.gnome.org/" + +DEPEND="virtual/glibc virtual/x11 + >=media-libs/imlib-1.9.8.1" + +src_unpack() { + unpack ${P}.tar.gz + cd ${S} + unpack Xenophilia-1.2.x.tar.gz +} + +src_compile() { + try ./configure --host=${CHOST} --prefix=/usr/X11R6 + try make + + cd ${S}/Xenophilia-0.7 + try make PREFIX=/usr/X11R6 FONTDIR=/usr/X11R6/lib/X11/fonts/misc + +} + +src_install() { + try make prefix=${D}/usr/X11R6 install + dodoc AUTHORS COPYING* ChangeLog README NEWS + cd Xenophilia-0.7 + try make PREFIX=${D}/usr/X11R6 FONTDIR=/usr/X11R6/lib/X11/fonts/misc install + dodoc AUTHORS CONFIGURATION TODO COPYING* ChangeLog README +} + + + + |