You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-07-10 12:19:27 -07:00
0a7fbf2d91
I'm moving to homebrew, and I haven't actually touched most of these in ages, anyway git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@99643 d073be05-634f-4543-b044-5fe20cf6d1d6
58 lines
2.2 KiB
Tcl
58 lines
2.2 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
# $Id$
|
|
|
|
PortSystem 1.0
|
|
PortGroup python 1.0
|
|
PortGroup select 1.0
|
|
|
|
name py-bpython
|
|
version 0.10.1
|
|
platforms darwin
|
|
categories python
|
|
maintainers nomaintainer
|
|
description fancy interface to the Python interpreter
|
|
long_description a fancy interface to the Python interpreter for \
|
|
Unix-like operating systems
|
|
|
|
homepage http://www.bpython-interpreter.org/
|
|
master_sites ${homepage}/releases/
|
|
distname bpython-${version}
|
|
checksums rmd160 4a62158fce1e86c906900913e10c342820936050 \
|
|
sha256 73546a3162ddd9da400ded365c65393989221397da54690e4d25f1ddef3dbc16
|
|
|
|
python.versions 25 26 27 31 32
|
|
python.default_version 27
|
|
|
|
if {$name != $subport} {
|
|
depends_lib-append port:py${python.version}-parsing \
|
|
port:py${python.version}-pygments \
|
|
port:py${python.version}-distribute
|
|
|
|
select.group bpython
|
|
select.file ${filespath}/bpython${python.version}
|
|
|
|
post-destroot {
|
|
if {${python.branch} == "2.5"} {
|
|
set pyetc ${destroot}${prefix}/share/${subport}/etc
|
|
xinstall -d ${pyetc}
|
|
set themedir ${destroot}${prefix}/share/${subport}/themes
|
|
xinstall -d ${themedir}
|
|
|
|
set mandir ${destroot}${prefix}/share/${subport}/man
|
|
xinstall -d ${mandir}/man1 ${mandir}/man5
|
|
xinstall ${worksrcpath}/doc/bpython.1 ${mandir}/man1
|
|
xinstall ${worksrcpath}/doc/bpython-config.5 ${mandir}/man5
|
|
} else {
|
|
set pyetc ${destroot}${python.prefix}/etc
|
|
xinstall -d ${pyetc}
|
|
set themedir ${destroot}${python.prefix}/share/themes
|
|
xinstall -d ${themedir}
|
|
set mandir ${destroot}${prefix}/share/${subport}/man
|
|
}
|
|
|
|
xinstall -W ${worksrcpath} sample-config ${pyetc}
|
|
xinstall -W ${worksrcpath} sample.theme light.theme \
|
|
${themedir}
|
|
}
|
|
}
|