diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2003-05-11 09:38:19 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2003-05-11 09:38:19 +0000 |
commit | 0e6f2b795e5211aeadf15ba5ffcbec3872455b9a (patch) | |
tree | af986be02dceeda367e6e2e079e5c2ea6f61afda /app-editors/qemacs | |
parent | added some more docs (diff) | |
download | gentoo-2-0e6f2b795e5211aeadf15ba5ffcbec3872455b9a.tar.gz gentoo-2-0e6f2b795e5211aeadf15ba5ffcbec3872455b9a.tar.bz2 gentoo-2-0e6f2b795e5211aeadf15ba5ffcbec3872455b9a.zip |
new ebuild
Diffstat (limited to 'app-editors/qemacs')
-rw-r--r-- | app-editors/qemacs/ChangeLog | 11 | ||||
-rw-r--r-- | app-editors/qemacs/files/digest-qemacs-0.3.1 | 1 | ||||
-rw-r--r-- | app-editors/qemacs/files/qemacs-Makefile-gentoo.patch | 12 | ||||
-rw-r--r-- | app-editors/qemacs/qemacs-0.3.1.ebuild | 37 |
4 files changed, 61 insertions, 0 deletions
diff --git a/app-editors/qemacs/ChangeLog b/app-editors/qemacs/ChangeLog new file mode 100644 index 000000000000..c1571f874ada --- /dev/null +++ b/app-editors/qemacs/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for app-editors/qemacs +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.1 2003/05/11 09:38:18 mkennedy Exp $ + +*qemacs-0.3.1 (11 May 2003) + + 11 May 2003; Matthew Kennedy <mkennedy@gentoo.org> qemacs-0.3.1.ebuild, + files/qemacs-Makefile-gentoo.patch: + New ebuid. Submitted by Paul Totterman <paul_totterman@yahoo.com> bug #20341. + Massaged by Matthew Kennedy <mkennedy@gentoo.org> + diff --git a/app-editors/qemacs/files/digest-qemacs-0.3.1 b/app-editors/qemacs/files/digest-qemacs-0.3.1 new file mode 100644 index 000000000000..86ccf24a3138 --- /dev/null +++ b/app-editors/qemacs/files/digest-qemacs-0.3.1 @@ -0,0 +1 @@ +MD5 74d85dee9861d494bf1f9c53bbc85298 qemacs-0.3.1.tar.gz 809124 diff --git a/app-editors/qemacs/files/qemacs-Makefile-gentoo.patch b/app-editors/qemacs/files/qemacs-Makefile-gentoo.patch new file mode 100644 index 000000000000..9e1cc0edc694 --- /dev/null +++ b/app-editors/qemacs/files/qemacs-Makefile-gentoo.patch @@ -0,0 +1,12 @@ +diff -ur qemacs-0.3.1.original/Makefile qemacs-0.3.1/Makefile +--- qemacs-0.3.1.original/Makefile 2003-04-21 17:01:42.000000000 -0500 ++++ qemacs-0.3.1/Makefile 2003-05-10 00:13:50.000000000 -0500 +@@ -197,7 +197,6 @@ + endif + mkdir -p $(prefix)/share/qe + install kmaps ligatures $(prefix)/share/qe +- install qe.1 $(prefix)/man/man1 + install -m 755 -s html2png $(prefix)/bin + + TAGS: force +Only in qemacs-0.3.1: Makefile~ diff --git a/app-editors/qemacs/qemacs-0.3.1.ebuild b/app-editors/qemacs/qemacs-0.3.1.ebuild new file mode 100644 index 000000000000..6e915e2e140e --- /dev/null +++ b/app-editors/qemacs/qemacs-0.3.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.3.1.ebuild,v 1.1 2003/05/11 09:38:19 mkennedy Exp $ + +DESCRIPTION="QEmacs (for Quick Emacs) is a very small but powerful UNIX editor." +HOMEPAGE="http://fabrice.bellard.free.fr/qemacs/" +SRC_URI="http://fabrice.bellard.free.fr/qemacs/${P}.tar.gz" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="X? ( virtual/x11 ) + png? ( =media-libs/libpng-1.2* )" + +S=${WORKDIR}/${P} + +src_unpack() { + unpack ${A} + cd ${S} && patch -p1 <${FILESDIR}/qemacs-Makefile-gentoo.patch || die +} + +src_compile() { + local myconf + use X && myconf="--enable-x11" || myconf="--disable-x11" + use png && myconf="${myconf} --enable-png" || myconf="${myconf} --disable-png" + ./configure ${myconf} + emake || die +} + +src_install() { + dodir /usr/bin + make prefix=${D}/usr \ + install || die + doman qe.1 + dodoc COPYING Changelog README TODO VERSION + dohtml *.html +} |