diff options
author | Stuart Bouyer <stubear@gentoo.org> | 2002-11-06 16:54:57 +0000 |
---|---|---|
committer | Stuart Bouyer <stubear@gentoo.org> | 2002-11-06 16:54:57 +0000 |
commit | 1d31c0b68d676fd232bca18ab37f989a7d345df3 (patch) | |
tree | 6af1fd667be2134c1784c9bf964ec5294527f967 /app-editors/qe/qe-0.1.1.ebuild | |
parent | Removed RDEPEND=${DEPEND} (diff) | |
download | historical-1d31c0b68d676fd232bca18ab37f989a7d345df3.tar.gz historical-1d31c0b68d676fd232bca18ab37f989a7d345df3.tar.bz2 historical-1d31c0b68d676fd232bca18ab37f989a7d345df3.zip |
initial ebuild addition to portage tree
Diffstat (limited to 'app-editors/qe/qe-0.1.1.ebuild')
-rw-r--r-- | app-editors/qe/qe-0.1.1.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app-editors/qe/qe-0.1.1.ebuild b/app-editors/qe/qe-0.1.1.ebuild new file mode 100644 index 000000000000..af2b7b05bb8a --- /dev/null +++ b/app-editors/qe/qe-0.1.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/qe/qe-0.1.1.ebuild,v 1.1 2002/11/06 16:54:57 stubear Exp $ + +IUSE="" +DESCRIPTION="QE is a PE2-like editor program under U*nix with Chinese support" +HOMEPAGE="http://www.cc.ncu.edu.tw/~center5/product/qe/ + http://members.xoom.com/linux4tw/qe/" +SRC_URI="ftp://freebsd.sinica.edu.tw/pub/statue/qe/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +DEPEND="virtual/glibc" + +S=${WORKDIR}/${P} + +src_compile() { + ./configure --prefix=/usr + make all || die +} + +src_install () { + make prefix=${D}/usr install || die + dodoc AUTHORS ChangeLog README README.big5 +} |