Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 448712 Details for
Bug 502290
dev-lisp/picolisp - a fast and lightweight Lisp interpreter
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
picolisp-16.6.ebuild
picolisp-16.6.ebuild (text/plain), 2.53 KB, created by
Constantine Bytensky
on 2016-10-01 17:12:22 UTC
(
hide
)
Description:
picolisp-16.6.ebuild
Filename:
MIME Type:
Creator:
Constantine Bytensky
Created:
2016-10-01 17:12:22 UTC
Size:
2.53 KB
patch
obsolete
># Copyright 1999-2014 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header: $ > >EAPI=5 > >inherit eutils bash-completion-r1 > >URI_FILENAME="picoLisp" >URI_DOMAIN="http://software-lab.de/" >URI_PREFIX="${URI_DOMAIN}${URI_FILENAME}" >URI_SUFFIX=".tgz" > >if [[ ${PV} != 9999 ]] ; then > SRC_URI="${URI_PREFIX}-${PV}${URI_SUFFIX}" > KEYWORDS="~amd64 ~x86" >fi > >DESCRIPTION="A fast and lightweight Lisp interpreter" >HOMEPAGE="http://picolisp.com/" > >LICENSE="MIT" >SLOT="0" >IUSE="bash-completion doc examples src" > >QA_PREBUILT="*" > >S="${WORKDIR}/picoLisp" > >livefetch() { > FILENAME="${1##*/}" > einfo "Fetching ${FILENAME}" > wget "${1}" > tar xf "${FILENAME}" >} > >pre_src_unpack() { > [[ ${PV} == 9999 ]] && livefetch "${URI_PREFIX}${URI_SUFFIX}" > use amd64 && livefetch "${URI_DOMAIN}x86-64.linux${URI_SUFFIX}" >} > >src_prepare() { > find . -type f -executable -exec sed -i "s#!bin/picolisp lib.l#!/usr/bin/picolisp /usr/lib/picolisp/lib.l#" {} \; > sed -i "s# test -x /usr/bin/picolisp# false#" src64/mkAsm > epatch_user >} > >src_compile() { > if use amd64; then > cd src64 > mv ../../src64/*.s . > einfo "Phase 1: building ${PN} with prebuild *.s files" > emake > einfo 'Phase 2: building ${PN} using ${PN}' > emake clean > emake > else > cd src > emake > fi >} > >src_install() { > DLIB=/usr/$(get_libdir)/${PN} > > #FIXME add vimsyntax support > rm -rf lib/vim > > for FILE in picolisp pil; do > dobin "bin/${FILE}" > rm "bin/${FILE}" > done > exeinto $DLIB/bin > doexe bin/* > > insinto $DLIB > use bash-completion && newbashcomp lib/bash_completion "${PN}" > rm -rf lib/bash_completion lib/el > doins -r *.l *.css lib loc > if use amd64 && use src; then > DSRC=${DLIB}/src64 > insinto $DSRC > doins -r src64/*.l src64/lib > insinto $DSRC/arch > doins -r src64/arch/x86-64.l > insinto $DSRC/sys > doins -r src64/sys/x86-64.linux.* > fi > doman man/*/* > DSHARE=/usr/share/${PN} > insinto $DSHARE > doins -r img > dosym $DSHARE/img $DLIB/img > dodoc CHANGES COPYING CREDITS INSTALL README > if use doc; then > DDOC=/usr/share/doc/${PF} > insinto $DDOC > doins doc/quine doc/db doc/travel doc/utf8 doc/vim-tsm > dohtml doc/* > insinto $DDOC/html > doins doc/family.l doc/shape.l doc/fun.l doc/hello.l > if use amd64; then > doins doc/family64.tgz > insinto $DDOC > doins -r doc64 > else > doins doc/family.tgz > insinto $DDOC > doins doc/structures > fi > dosym $DDOC/html $DLIB/doc > fi > if use examples; then > insinto $DSHARE > doins -r app games misc opt > exeinto $DSHARE/misc > doexe misc/bigtest misc/calc misc/chat misc/mailing > exeinto $DSHARE/games > doexe games/xchess > fi >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 502290
:
371148
|
371270
|
371272
|
386818
|
386820
|
386822
|
386824
|
386826
|
448710
|
448712
|
690762
|
728949