diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-08-01 12:51:21 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-08-01 12:51:21 +0000 |
commit | 37cb33176e0da9ee978aa0e5dc4fc6bab2c7440a (patch) | |
tree | a76305356c12b3e788119a529010991dd7f7f54f /app-editors/gtk-xemacs | |
parent | masked anygui due to its outdated dependency (diff) | |
download | gentoo-2-37cb33176e0da9ee978aa0e5dc4fc6bab2c7440a.tar.gz gentoo-2-37cb33176e0da9ee978aa0e5dc4fc6bab2c7440a.tar.bz2 gentoo-2-37cb33176e0da9ee978aa0e5dc4fc6bab2c7440a.zip |
repoman'd
Diffstat (limited to 'app-editors/gtk-xemacs')
-rw-r--r-- | app-editors/gtk-xemacs/gtk-xemacs-21.1.12_p3.ebuild | 35 |
1 files changed, 16 insertions, 19 deletions
diff --git a/app-editors/gtk-xemacs/gtk-xemacs-21.1.12_p3.ebuild b/app-editors/gtk-xemacs/gtk-xemacs-21.1.12_p3.ebuild index da91dcbcec4d..a9eddc916562 100644 --- a/app-editors/gtk-xemacs/gtk-xemacs-21.1.12_p3.ebuild +++ b/app-editors/gtk-xemacs/gtk-xemacs-21.1.12_p3.ebuild @@ -1,29 +1,26 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-editors/gtk-xemacs/gtk-xemacs-21.1.12_p3.ebuild,v 1.6 2002/08/01 11:58:57 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/gtk-xemacs/gtk-xemacs-21.1.12_p3.ebuild,v 1.7 2002/08/01 12:51:21 seemant Exp $ -S=${WORKDIR}/gtk-xemacs +S=${WORKDIR}/${PN} DESCRIPTION="XEmacs 21.1.12 GTK" SRC_URI="http://www.cs.indiana.edu/elisp/gui-xemacs/dist/${PN}-09252000.tar.bz2" HOMEPAGE="http://www.cs.indiana.edu/elisp/gui-xemacs/" -src_compile() { - cd ${S} - try ./configure --prefix=/usr/X11R6 - try make -} - -src_install() { - cd ${S} - try make prefix=${D}/usr/X11R6 install - prepinfo /usr/X11R6/lib/xemacs-21.1.12 - prepman /usr/X11R6 - dodoc BUGS CHANGES-beta COPYING GETTING* INSTALL ISSUES PROBLEMS README* -} - - - - +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" +DEPEND="=x11-libs/gtk+-1.2*" +src_compile() { + ./configure --prefix=/usr/X11R6 || die + make || die +} +src_install() { + make prefix=${D}/usr/X11R6 install || die + prepinfo /usr/X11R6/lib/xemacs-21.1.12 + prepman /usr/X11R6 + dodoc BUGS CHANGES-beta COPYING GETTING* INSTALL ISSUES PROBLEMS README* +} |