diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-12-11 18:05:42 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-12-11 18:05:42 +0000 |
commit | f7c9abf9f70687782d4bf82c1660f7563bd04bc5 (patch) | |
tree | 79d432f6f3bca74e3dda08513e4a7ee89db7e8f6 /x11-libs/fltk | |
parent | *** empty log message *** (diff) | |
download | historical-f7c9abf9f70687782d4bf82c1660f7563bd04bc5.tar.gz historical-f7c9abf9f70687782d4bf82c1660f7563bd04bc5.tar.bz2 historical-f7c9abf9f70687782d4bf82c1660f7563bd04bc5.zip |
*** empty log message ***
Diffstat (limited to 'x11-libs/fltk')
-rw-r--r-- | x11-libs/fltk/files/digest-fltk-1.0.10 | 1 | ||||
-rw-r--r-- | x11-libs/fltk/fltk-1.0.10.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/x11-libs/fltk/files/digest-fltk-1.0.10 b/x11-libs/fltk/files/digest-fltk-1.0.10 new file mode 100644 index 000000000000..b525bdcfb13f --- /dev/null +++ b/x11-libs/fltk/files/digest-fltk-1.0.10 @@ -0,0 +1 @@ +MD5 e76cc38b6c0bdb046a8ac5cd31a7e65e fltk-1.0.10-source.tar.bz2 diff --git a/x11-libs/fltk/fltk-1.0.10.ebuild b/x11-libs/fltk/fltk-1.0.10.ebuild new file mode 100644 index 000000000000..c5ed1b35c317 --- /dev/null +++ b/x11-libs/fltk/fltk-1.0.10.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Your Name <your email> +# $Header: /var/cvsroot/gentoo-x86/x11-libs/fltk/fltk-1.0.10.ebuild,v 1.1 2000/12/11 18:05:42 achim Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="C++ user interface toolkit for X and OpenGL." +SRC_URI="ftp://ftp.fltk.org/pub/fltk/${PV}/${P}-source.tar.bz2" +HOMEPAGE="http://www.fltk.org" +DEPEND=">=x11-base/xfree-4.0.1 + >=media-libs/mesa-3.4" + + +src_compile() { + + cd ${S} + try ./configure --prefix=/usr/X11R6 --host=${CHOST} --enable-shared + try make + +} + +src_install () { + + cd ${S} + try make prefix=${D}/usr/X11R6 install + dodoc CHANGES COPYING README* + mv ${D}/usr/X11R6/share/doc/fltk ${D}/usr/doc/${PF}/html + +} + |