non-default locations
- Don't install libiberty (not needed)
- Fix a typo in comment [1]
- Generate correct dependency list in case if target arch and abi were not
specified by setting fake OURTARGET value [1]
- Bump up PORTREVISION.
Noticed by: pav [1]
expansion, no need to bump portrevision
Full diff at
<http://people.freebsd.org/~thierry/ports/CImg-1.2.1_070612_070615.diff.bz2>
- Move the dirname `gfortran42` line to pre-configure, to fix a problem
when build dependencies have not yet been installed.
Reported by: Romain Tartière <romain (at) blogreen.org>
programmatic website development in Python easy. Several key points:
* A framework to make writing web applications in Python easy
* Inspired by Rails and TurboGears
* Utilizes a minimalist, component-based philosophy that makes it easy
to expand on
* Harness existing knowledge about Python
Pylons makes it easy to expand on your knowledge of Python to master
Pylons for web development. Using a MVC style dispath, Python
knowledge is used at various levels:
* The Controller is just a basic Python class, called for each
request. Customizing the response is as easy as overriding __call__
to make your webapp work how you want.
* Myghty templating compiles directly to Python byte-code for speed
and utilizes Python for template control rather than creating its
own template syntax for "for, while, etc"
WWW: http://www.pylonshq.com/
PR: ports/113970
Submitted by: Denis Shaposhnikov <dsh at vlink.ru>
within web applications.
These functions are intended to ease web development with template
languages by removing common view logic and encapsulating it in
re-usable modules as well as occasionally providing objects for use
within controllers to assist with common web development paradigms.
WWW: http://pylonshq.com/WebHelpers/
PR: ports/113969
Submitted by: Denis Shaposhnikov <dsh at vlink.ru>
experience and it is not as easy as it could be. For instance, typical
implementations of decorators involve nested functions, and we all
know that flat is better than nested. Moreover, typical
implementations of decorators do not preserve the signature of
decorated functions, thus confusing both documentation tools and
developers.
The aim of the decorator module it to simplify the usage of decorators
for the average programmer, and to popularize decorators usage giving
examples of useful decorators, such as memoize, tracing,
redirecting_stdout, locked, etc.
WWW: http://www.phyast.pitt.edu/~micheles/python/documentation.html
PR: ports/113968
Submitted by: Denis Shaposhnikov <dsh at vlink.ru>
intercept Instant Text Messaging. Optionally, intercepted text messages can be
stored onto an RDMBS (Only mySQL is supported for now). Given that mySQL is
used, stored instant messages can be read through a browser interface that is
written in PHP language. Please see the INSTALL.txt file for instructions on
how to install, configure and run EnderUNIX scanhill.
WWW: http://www.enderunix.org/scanhill/
$ db hash name.hash.db josk
db: Error reading key `josk': Invalid argument
$ db hash name.hash.db joska
db: Error reading key `joska': Invalid argument
$ db btree name.btree.db josk
db: Unknown key `josk'
$ db btree name.btree.db joska
db: Unknown key `joska'
It seems to happen due to the new design of db_get() in db.c, which
I will try to decypher later on.