diff options
author | 2002-04-12 22:39:21 +0000 | |
---|---|---|
committer | 2002-04-12 22:39:21 +0000 | |
commit | 8f547a21657ba6cd674e2ccce10e6cf6d437e8e5 (patch) | |
tree | 5cb74b6a3f640b08a053cbaf26baeaadb770e820 /app-editors/emacs | |
parent | Compile against new libpng (diff) | |
download | historical-8f547a21657ba6cd674e2ccce10e6cf6d437e8e5.tar.gz historical-8f547a21657ba6cd674e2ccce10e6cf6d437e8e5.tar.bz2 historical-8f547a21657ba6cd674e2ccce10e6cf6d437e8e5.zip |
removed older ebuilds
Diffstat (limited to 'app-editors/emacs')
-rw-r--r-- | app-editors/emacs/emacs-20.7.ebuild | 55 | ||||
-rw-r--r-- | app-editors/emacs/emacs-21.1-r1.ebuild | 79 | ||||
-rw-r--r-- | app-editors/emacs/emacs-21.1-r2.ebuild | 79 | ||||
-rw-r--r-- | app-editors/emacs/emacs-21.1-r3.ebuild | 82 | ||||
-rw-r--r-- | app-editors/emacs/emacs-21.1-r4.ebuild | 46 | ||||
-rw-r--r-- | app-editors/emacs/emacs-21.1.ebuild | 44 | ||||
-rw-r--r-- | app-editors/emacs/files/digest-emacs-20.7 | 1 | ||||
-rw-r--r-- | app-editors/emacs/files/digest-emacs-21.1 | 1 | ||||
-rw-r--r-- | app-editors/emacs/files/digest-emacs-21.1-r1 | 1 | ||||
-rw-r--r-- | app-editors/emacs/files/digest-emacs-21.1-r2 | 1 | ||||
-rw-r--r-- | app-editors/emacs/files/digest-emacs-21.1-r3 | 1 |
11 files changed, 22 insertions, 368 deletions
diff --git a/app-editors/emacs/emacs-20.7.ebuild b/app-editors/emacs/emacs-20.7.ebuild deleted file mode 100644 index b6cd345f5a58..000000000000 --- a/app-editors/emacs/emacs-20.7.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Mikael Hallendal <micke@hallendal.net> -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-20.7.ebuild,v 1.4 2001/11/10 02:54:28 hallski Exp $ - - -S=${WORKDIR}/${P} -DESCRIPTION="An incredibly powerful, extensible text editor" -SRC_URI="ftp://ftp.gnu.org/gnu/${PN}/${P}.tar.gz" -HOMEPAGE="http://www.gnu.org/software/emacs" - -DEPEND=">=sys-libs/ncurses-5.2 - X? ( virtual/x11 ) - motif? ( >=x11-libs/openmotif-2.1.30 ) - nls? ( >=sys-devel/gettext-0.10.35 )" - -PROVIDE="virtual/emacs" - -src_compile() { - local myconf - - if [ -z "`use nls`" ] ; then - myconf="${myconf} --disable-nls" - fi - if [ "`use X`" ] ; then - myconf="${myconf} --with-x" - else - myconf="${myconf} --without-x" - fi - if [ "`use motif`" ] ; then - myconf="${myconf} --with-x-toolkit=motif" - fi - - try ./configure --prefix=/usr --libexecdir=/usr/lib --host=${CHOST} \ - --mandir=/usr/share/man --infodir=/usr/share/info ${myconf} - - try make ${MAKEOPTS} -} - -src_install () { - try make prefix=${D}/usr libexecdir=${D}/usr/lib \ - mandir=${D}/usr/share/man infodir=${D}/usr/share/info install - cd ${D}/usr/share/info - rm dir - for i in * - do - mv ${i%.info} $i.info - done - dodoc BUGS ChangeLog README -} - - - - - diff --git a/app-editors/emacs/emacs-21.1-r1.ebuild b/app-editors/emacs/emacs-21.1-r1.ebuild deleted file mode 100644 index 1d9aa6a7ac60..000000000000 --- a/app-editors/emacs/emacs-21.1-r1.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 1999-2001 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Maintainer: System Team <system@gentoo.org> -# Author: Mikael Hallendal <micke@hallendal.net> -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-21.1-r1.ebuild,v 1.2 2002/01/19 12:50:24 hallski Exp $ - - -S=${WORKDIR}/${P} -DESCRIPTION="An incredibly powerful, extensible text editor" -SRC_URI="ftp://ftp.codefactory.se/pub/gnu/${PN}/${P}.tar.gz" -HOMEPAGE="http://www.gnu.org/software/emacs" - -DEPEND=">=sys-libs/ncurses-5.2 - sys-libs/gdbm - X? ( virtual/x11 - >=media-libs/libungif-4.1.0 - >=media-libs/jpeg-6b-r2 - >=media-libs/tiff-3.5.5-r3 - >=media-libs/libpng-1.0.9 ) - motif? ( >=x11-libs/openmotif-2.1.30 ) - nls? ( >=sys-devel/gettext-0.10.35 )" - - -PROVIDE="virtual/emacs" - -src_compile() { - local myconf - - if [ -z "`use nls`" ] ; then - myconf="${myconf} --disable-nls" - fi - - if [ "`use X`" ] ; then - myconf="${myconf} \ - --with-x \ - --with-xpm \ - --with-jpeg \ - --with-tiff \ - --with-gif \ - --with-png" - else - myconf="${myconf} --without-x" - fi - - if [ "`use motif`" ] ; then - myconf="${myconf} --with-x-toolkit=motif" - fi - - ./configure --host=${CHOST} \ - --prefix=/usr \ - --libexecdir=/usr/lib \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info \ - ${myconf} || die - - emake || die -} - -src_install () { - make prefix=${D}/usr \ - libexecdir=${D}/usr/lib \ - mandir=${D}/usr/share/man \ - infodir=${D}/usr/share/info \ - install || die - - cd ${D}/usr/share/info - rm dir - - for i in * - do - mv ${i%.info} $i.info - done - - dodoc BUGS ChangeLog README - - # Gives a warning if it doesn't exist - dodir /usr/share/emacs/21.1/leim - touch ${D}/usr/share/emacs/21.1/leim/.keep -} diff --git a/app-editors/emacs/emacs-21.1-r2.ebuild b/app-editors/emacs/emacs-21.1-r2.ebuild deleted file mode 100644 index e14d3496ae35..000000000000 --- a/app-editors/emacs/emacs-21.1-r2.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 1999-2001 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Maintainer: System Team <system@gentoo.org> -# Author: Mikael Hallendal <micke@hallendal.net> -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-21.1-r2.ebuild,v 1.1 2002/01/19 12:50:24 hallski Exp $ - - -S=${WORKDIR}/${P} -DESCRIPTION="An incredibly powerful, extensible text editor" -SRC_URI="ftp://ftp.codefactory.se/pub/gnu/${PN}/${P}.tar.gz" -HOMEPAGE="http://www.gnu.org/software/emacs" - -DEPEND=">=sys-libs/ncurses-5.2 - sys-libs/gdbm - X? ( virtual/x11 - >=media-libs/libungif-4.1.0 - >=media-libs/jpeg-6b-r2 - >=media-libs/tiff-3.5.5-r3 - >=media-libs/libpng-1.0.9 ) - motif? ( >=x11-libs/openmotif-2.1.30 ) - nls? ( >=sys-devel/gettext-0.10.35 )" - - -PROVIDE="virtual/emacs" - -src_compile() { - local myconf - - if [ -z "`use nls`" ] ; then - myconf="${myconf} --disable-nls" - fi - - if [ "`use X`" ] ; then - myconf="${myconf} \ - --with-x \ - --with-xpm \ - --with-jpeg \ - --with-tiff \ - --with-gif \ - --with-png" - else - myconf="${myconf} --without-x" - fi - - if [ "`use motif`" ] ; then - myconf="${myconf} --with-x-toolkit=motif" - fi - - ./configure --host=${CHOST} \ - --prefix=/usr \ - --libexecdir=/usr/lib \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info \ - ${myconf} || die - - emake || die -} - -src_install () { - make prefix=${D}/usr \ - libexecdir=${D}/usr/lib \ - mandir=${D}/usr/share/man \ - infodir=${D}/usr/share/info \ - install || die - - cd ${D}/usr/share/info - rm dir - - for i in * - do - mv ${i%.info} $i.info - done - - dodoc BUGS ChangeLog README - - # Gives a warning if it doesn't exist - dodir /usr/share/emacs/21.1/leim - touch ${D}/usr/share/emacs/21.1/leim/.keep -} diff --git a/app-editors/emacs/emacs-21.1-r3.ebuild b/app-editors/emacs/emacs-21.1-r3.ebuild deleted file mode 100644 index bf31f4de3ad7..000000000000 --- a/app-editors/emacs/emacs-21.1-r3.ebuild +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright 1999-2001 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Maintainer: System Team <system@gentoo.org> -# Author: Mikael Hallendal <micke@hallendal.net> -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-21.1-r3.ebuild,v 1.1 2002/01/19 16:05:51 hallski Exp $ - - -S=${WORKDIR}/${P} -DESCRIPTION="An incredibly powerful, extensible text editor" -SRC_URI="ftp://ftp.codefactory.se/pub/gnu/${PN}/${P}.tar.gz" -HOMEPAGE="http://www.gnu.org/software/emacs" - -# Never use the sandbox, it causes Emacs to segfault on startup -SANDBOX_DISABLED="1" - -DEPEND=">=sys-libs/ncurses-5.2 - sys-libs/gdbm - X? ( virtual/x11 - >=media-libs/libungif-4.1.0 - >=media-libs/jpeg-6b-r2 - >=media-libs/tiff-3.5.5-r3 - >=media-libs/libpng-1.0.9 ) - motif? ( >=x11-libs/openmotif-2.1.30 ) - nls? ( >=sys-devel/gettext-0.10.35 )" - - -PROVIDE="virtual/emacs" - -src_compile() { - local myconf - - if [ -z "`use nls`" ] ; then - myconf="${myconf} --disable-nls" - fi - - if [ "`use X`" ] ; then - myconf="${myconf} \ - --with-x \ - --with-xpm \ - --with-jpeg \ - --with-tiff \ - --with-gif \ - --with-png" - else - myconf="${myconf} --without-x" - fi - - if [ "`use motif`" ] ; then - myconf="${myconf} --with-x-toolkit=motif" - fi - - ./configure --host=${CHOST} \ - --prefix=/usr \ - --libexecdir=/usr/lib \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info \ - ${myconf} || die - - emake || die -} - -src_install () { - make prefix=${D}/usr \ - libexecdir=${D}/usr/lib \ - mandir=${D}/usr/share/man \ - infodir=${D}/usr/share/info \ - install || die - - cd ${D}/usr/share/info - rm dir - - for i in * - do - mv ${i%.info} $i.info - done - - dodoc BUGS ChangeLog README - - # Gives a warning if it doesn't exist - dodir /usr/share/emacs/21.1/leim - touch ${D}/usr/share/emacs/21.1/leim/.keep -} diff --git a/app-editors/emacs/emacs-21.1-r4.ebuild b/app-editors/emacs/emacs-21.1-r4.ebuild index c2775d9a3449..dbe09a34df9a 100644 --- a/app-editors/emacs/emacs-21.1-r4.ebuild +++ b/app-editors/emacs/emacs-21.1-r4.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2001 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Maintainer: System Team <system@gentoo.org> # Author: Mikael Hallendal <micke@hallendal.net> -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-21.1-r4.ebuild,v 1.1 2002/04/12 21:05:14 spider Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-21.1-r4.ebuild,v 1.2 2002/04/12 22:39:21 seemant Exp $ S=${WORKDIR}/${P} @@ -28,39 +28,37 @@ PROVIDE="virtual/emacs" src_compile() { local myconf + + use nls \ + || myconf="${myconf} --disable-nls" - if [ -z "`use nls`" ] ; then - myconf="${myconf} --disable-nls" - fi - - if [ "`use X`" ] ; then - myconf="${myconf} \ + use X \ + && myconf="${myconf} \ --with-x \ --with-xpm \ --with-jpeg \ --with-tiff \ --with-gif \ - --with-png" - else - myconf="${myconf} --without-x" - fi - - if [ "`use motif`" ] ; then - myconf="${myconf} --with-x-toolkit=motif" - fi - - ./configure --host=${CHOST} \ - --prefix=/usr \ - --libexecdir=/usr/lib \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info \ - ${myconf} || die + --with-png" \ + || myconf="${myconf} --without-x" + + use motif \ + && myconf="${myconf} --with-x-toolkit=motif" + + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --libexecdir=/usr/lib \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + ${myconf} || die emake || die } src_install () { - make prefix=${D}/usr \ + make \ + prefix=${D}/usr \ libexecdir=${D}/usr/lib \ mandir=${D}/usr/share/man \ infodir=${D}/usr/share/info \ diff --git a/app-editors/emacs/emacs-21.1.ebuild b/app-editors/emacs/emacs-21.1.ebuild deleted file mode 100644 index 0592599c2718..000000000000 --- a/app-editors/emacs/emacs-21.1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2001 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Maintainer: System Team <system@gentoo.org> -# Author: Mikael Hallendal <micke@hallendal.net> -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-21.1.ebuild,v 1.2 2001/10/24 21:34:42 drobbins Exp $ - - -S=${WORKDIR}/${P} -DESCRIPTION="An incredibly powerful, extensible text editor" -SRC_URI="ftp://ftp.codefactory.se/pub/gnu/${PN}/${P}.tar.gz" -HOMEPAGE="http://www.gnu.org/software/emacs" - -DEPEND=">=sys-libs/ncurses-5.2 sys-libs/gdbm X? ( virtual/x11 media-libs/libungif-4.1.0 media-libs/jpeg-6b-r2 media-libs/tiff-3.5.5-r3 media-libs/libpng-1.0.9 ) motif? ( >=x11-libs/openmotif-2.1.30 ) nls? ( >=sys-devel/gettext-0.10.35 )" - -PROVIDE="virtual/emacs" - -src_compile() { - local myconf - if [ -z "`use nls`" ] ; then - myconf="${myconf} --disable-nls" - fi - if [ "`use X`" ] ; then - myconf="${myconf} --with-x --with-xpm --with-jpeg --with-tiff --with-gif --with-png" - else - myconf="${myconf} --without-x" - fi - - if [ "`use motif`" ] ; then - myconf="${myconf} --with-x-toolkit=motif" - fi - ./configure --host=${CHOST} --prefix=/usr --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info ${myconf} || die - emake || die -} - -src_install () { - make prefix=${D}/usr libexecdir=${D}/usr/lib mandir=${D}/usr/share/man infodir=${D}/usr/share/info install || die - cd ${D}/usr/share/info - rm dir - for i in * - do - mv ${i%.info} $i.info - done - dodoc BUGS ChangeLog README -} diff --git a/app-editors/emacs/files/digest-emacs-20.7 b/app-editors/emacs/files/digest-emacs-20.7 deleted file mode 100644 index f7c49250cc56..000000000000 --- a/app-editors/emacs/files/digest-emacs-20.7 +++ /dev/null @@ -1 +0,0 @@ -MD5 c732cf5e668d4ac67d9418ecb103ecf5 emacs-20.7.tar.gz 15043428 diff --git a/app-editors/emacs/files/digest-emacs-21.1 b/app-editors/emacs/files/digest-emacs-21.1 deleted file mode 100644 index 1843fde85cb6..000000000000 --- a/app-editors/emacs/files/digest-emacs-21.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 3e0de8cf3ffe92e04c748842f7c64e62 emacs-21.1.tar.gz 20321444 diff --git a/app-editors/emacs/files/digest-emacs-21.1-r1 b/app-editors/emacs/files/digest-emacs-21.1-r1 deleted file mode 100644 index 1843fde85cb6..000000000000 --- a/app-editors/emacs/files/digest-emacs-21.1-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 3e0de8cf3ffe92e04c748842f7c64e62 emacs-21.1.tar.gz 20321444 diff --git a/app-editors/emacs/files/digest-emacs-21.1-r2 b/app-editors/emacs/files/digest-emacs-21.1-r2 deleted file mode 100644 index 1843fde85cb6..000000000000 --- a/app-editors/emacs/files/digest-emacs-21.1-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 3e0de8cf3ffe92e04c748842f7c64e62 emacs-21.1.tar.gz 20321444 diff --git a/app-editors/emacs/files/digest-emacs-21.1-r3 b/app-editors/emacs/files/digest-emacs-21.1-r3 deleted file mode 100644 index 1843fde85cb6..000000000000 --- a/app-editors/emacs/files/digest-emacs-21.1-r3 +++ /dev/null @@ -1 +0,0 @@ -MD5 3e0de8cf3ffe92e04c748842f7c64e62 emacs-21.1.tar.gz 20321444 |