diff options
author | Cyprien Nicolas (fulax) <c.nicolas+gentoo@gmail.com> | 2010-09-16 08:06:42 +0200 |
---|---|---|
committer | Chema Alonso Josa <nimiux@gentoo.org> | 2018-03-09 22:33:24 +0100 |
commit | e5d5cc448ae08358b6eae1b43f332e04cf59dfc3 (patch) | |
tree | 1a6d1db72f50f337419577a365a2fdec31bd1283 /app-text | |
parent | Moved to tree (diff) | |
download | lisp-e5d5cc448ae08358b6eae1b43f332e04cf59dfc3.tar.gz lisp-e5d5cc448ae08358b6eae1b43f332e04cf59dfc3.tar.bz2 lisp-e5d5cc448ae08358b6eae1b43f332e04cf59dfc3.zip |
Moved to tree. Bug 336891
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/skribe/Manifest | 2 | ||||
-rw-r--r-- | app-text/skribe/skribe-1.2l.ebuild | 47 |
2 files changed, 0 insertions, 49 deletions
diff --git a/app-text/skribe/Manifest b/app-text/skribe/Manifest deleted file mode 100644 index bb8d906f..00000000 --- a/app-text/skribe/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST skribe1.2l.tar.gz 245007 RMD160 5f4c272bd7c1973cc74b6f4fdf62c5f77dae4f25 SHA1 0817c383dc7f1ad5013de6a4d9246443a5f7d0d9 SHA256 87bc31b7c087070f27be2be816b322993972bbf03fb72cbd0d7603796d5636d0 -EBUILD skribe-1.2l.ebuild 1101 RMD160 8d5a1b32c656f9c1a430ab083b7a86b711b05e2b SHA1 020fd43ff674094cefed9c2300e29e9c56287604 SHA256 07a69e70f5f8cd4074be6427d33fbc68ac737d96273c33f5689fc310750dc8ca diff --git a/app-text/skribe/skribe-1.2l.ebuild b/app-text/skribe/skribe-1.2l.ebuild deleted file mode 100644 index 44637c98..00000000 --- a/app-text/skribe/skribe-1.2l.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -inherit multilib - -MY_P="${PN}${PV}" - -DESCRIPTION="Skribe is a text processor for technical documents written in scheme." -HOMEPAGE="http://www-sop.inria.fr/mimosa/fp/Skribe/" -SRC_URI="ftp://ftp-sop.inria.fr/mimosa/fp/Skribe/${MY_P}.tar.gz" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="dev-scheme/bigloo" - -S="${WORKDIR}/${MY_P}" - -src_unpack() { - unpack ${A} - cd "${S}" - -# cp ./etc/bigloo/configure ./etc/bigloo/configure.old - - # falsify bigloo auto-strip feature to prevent pre-stripped QA errors - sed -r 's/^blinkflags="(.*)"$/blinkflags="\1 -eval '\''(set! *strip* \\#f)'\''"/gi' -i ./etc/bigloo/configure - -# diff -u ./etc/bigloo/configure.old ./etc/bigloo/configure -} - -src_compile() { - ./configure \ - --with-bigloo \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --libdir=/usr/$(get_libdir) \ - --docdir=/usr/share/doc/${PF} \ - || die "configure failed" - emake || die "make failed" -} - -src_install() { - emake DESTDIR="${D}" install || "install failed" -} |