diff options
Diffstat (limited to 'dev-tex/detex/detex-2.8.ebuild')
-rw-r--r-- | dev-tex/detex/detex-2.8.ebuild | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/dev-tex/detex/detex-2.8.ebuild b/dev-tex/detex/detex-2.8.ebuild deleted file mode 100644 index ac7e037b53a6..000000000000 --- a/dev-tex/detex/detex-2.8.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/detex/detex-2.8.ebuild,v 1.2 2008/02/10 16:51:32 aballier Exp $ - -inherit eutils toolchain-funcs - -DESCRIPTION="A filter program that removes the LaTeX (or TeX) control sequences" -HOMEPAGE="http://www.cs.purdue.edu/homes/trinkle/detex/" -SRC_URI="http://www.cs.purdue.edu/homes/trinkle/detex/${P}.tar" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x86-fbsd" -IUSE="" - -DEPEND="virtual/libc - sys-devel/flex" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i \ - -e "s:CFLAGS = -O \${DEFS}:CFLAGS = ${CFLAGS} \${DEFS}:" \ - -e 's:LEX = lex:#LEX = lex:' \ - -e 's:#LEX = flex:LEX = flex:' \ - -e 's:#DEFS += ${DEFS} -DNO_MALLOC_DECL:DEFS += -DNO_MALLOC_DECL:' \ - -e 's:LEXLIB = -ll:LEXLIB = -lfl:' \ - Makefile || die "sed failed" -} - -src_compile() { - tc-export CC - emake || die "emake failed" -} - -src_install() { - dobin detex || die - dodoc README - doman detex.1l -} |