diff options
author | Paul Varner <fuzzyray@gentoo.org> | 2006-03-02 04:00:34 +0000 |
---|---|---|
committer | Paul Varner <fuzzyray@gentoo.org> | 2006-03-02 04:00:34 +0000 |
commit | 4214e5b238cd6809d900b6def8d5a120878eea88 (patch) | |
tree | 2dc6583223d03a0b5872449622828ffd5652cfe0 /app-text/manedit/manedit-0.5.10.ebuild | |
parent | Include more headers to get proper prototypes by RiverRat #124487. (diff) | |
download | gentoo-2-4214e5b238cd6809d900b6def8d5a120878eea88.tar.gz gentoo-2-4214e5b238cd6809d900b6def8d5a120878eea88.tar.bz2 gentoo-2-4214e5b238cd6809d900b6def8d5a120878eea88.zip |
Removed old ebuilds and modified dependencies of manedit-0.6.1 for modular X.
(Portage version: 2.1_pre5-r1)
Diffstat (limited to 'app-text/manedit/manedit-0.5.10.ebuild')
-rw-r--r-- | app-text/manedit/manedit-0.5.10.ebuild | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/app-text/manedit/manedit-0.5.10.ebuild b/app-text/manedit/manedit-0.5.10.ebuild deleted file mode 100644 index 9f5f22c563b3..000000000000 --- a/app-text/manedit/manedit-0.5.10.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/manedit/manedit-0.5.10.ebuild,v 1.12 2005/04/24 11:40:02 hansmi Exp $ - -DESCRIPTION="Man page editor using XML tags" -SRC_URI="ftp://wolfpack.twu.net/users/wolfpack/${P}.tar.bz2" -HOMEPAGE="http://wolfpack.twu.net/ManEdit/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 sparc ppc" -IUSE="" - -DEPEND="virtual/libc - virtual/x11 - =x11-libs/gtk+-1* - sys-libs/zlib - app-arch/bzip2" - -src_compile() { - # It autodetects x86 processors and adds the -march option itself - # but we don't actually want that. - env CFLAGS="${CFLAGS}" ./configure Linux \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --datadir=/usr/share \ - --enable=bzip2 \ - --enable=zlib \ - --disable="arch-i486" \ - --disable="arch-i586" \ - --disable="arch-i686" \ - --disable="arch-pentiumpro" || die "Bad Configure" - emake || die "Compile Error" -} - -src_install() { - # fix strip error (tries to strip a shell script) - cp manedit/Makefile.install.UNIX{,.orig} - sed -e '/INST.*FLAGS.*-s$/s:-s::' \ - manedit/Makefile.install.UNIX.orig > manedit/Makefile.install.UNIX - - # set man dir too or FHS is violated (/usr/man) - make \ - PREFIX=${D}/usr \ - MAN_DIR=${D}/usr/share/man/man1 \ - ICONS_DIR=${D}/usr/share/pixmaps \ - install || die "make install failed." - - dodoc AUTHORS LICENSE README -} |