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 | |
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')
-rw-r--r-- | app-editors/qe/ChangeLog | 10 | ||||
-rw-r--r-- | app-editors/qe/files/digest-qe-0.1.1 | 1 | ||||
-rw-r--r-- | app-editors/qe/qe-0.1.1.ebuild | 25 |
3 files changed, 36 insertions, 0 deletions
diff --git a/app-editors/qe/ChangeLog b/app-editors/qe/ChangeLog new file mode 100644 index 000000000000..77a28811a12d --- /dev/null +++ b/app-editors/qe/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-editors/qe +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-editors/qe/ChangeLog,v 1.1 2002/11/06 16:54:57 stubear Exp $ + +*qe-0.1.1 (07 Nov 2002) + + 07 Nov 2002; Stuart Bouyer <stubear@gentoo.org> qe-0.1.1.ebuild : + + Initial ebuild created and submitted by Lloyd Huang + <lloyd@coventive.com> diff --git a/app-editors/qe/files/digest-qe-0.1.1 b/app-editors/qe/files/digest-qe-0.1.1 new file mode 100644 index 000000000000..32804b7f8c0e --- /dev/null +++ b/app-editors/qe/files/digest-qe-0.1.1 @@ -0,0 +1 @@ +MD5 46b0e05aab9420456a27db7bc20156f0 qe-0.1.1.tar.gz 96548 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 +} |