diff options
author | miwi <miwi@FreeBSD.org> | 2011-11-24 22:16:47 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2011-11-24 22:16:47 +0800 |
commit | 39d537c31c61b88b83513a8a90ed2c16d1121cee (patch) | |
tree | 1db5bf11bf8cc063ec3107fd1eed03c6ebecc6c5 /dns/py-idnkit2/files | |
parent | 644d8e046bfeef27296d94517648d1dcf7ce0cdb (diff) | |
download | freebsd-ports-gnome-39d537c31c61b88b83513a8a90ed2c16d1121cee.tar.gz freebsd-ports-gnome-39d537c31c61b88b83513a8a90ed2c16d1121cee.tar.zst freebsd-ports-gnome-39d537c31c61b88b83513a8a90ed2c16d1121cee.zip |
Internationalized Domain Name toolkit 2 (idnkit-2) provides useful
APIs (libraries) for application developers to make softwares
IDNA2008-compliant, and also provides tools for system administrators
to process IDNs appropriately according to IDNA2008 specification.
The idnkit-2 is a toolkit revised by JPRS from the idnkit-1.0
developed by JPNIC, and it is released as an open source
free software modified to comply with IDNA2008.
idnkit-2 consists from its main part written in C and additional
API packages for other languages (Java, Python, and Perl).
WWW: http://jprs.co.jp/idn/index-e.html
PR: ports/162521
Submitted by: Rafal Lesniak <fbsd@grid.einherjar.de>
Feature safe: yes
Diffstat (limited to 'dns/py-idnkit2/files')
-rw-r--r-- | dns/py-idnkit2/files/patch-setup.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dns/py-idnkit2/files/patch-setup.py b/dns/py-idnkit2/files/patch-setup.py new file mode 100644 index 000000000000..0e3885c12283 --- /dev/null +++ b/dns/py-idnkit2/files/patch-setup.py @@ -0,0 +1,15 @@ +--- setup.py.orgi 2011-11-24 22:05:06.191148712 +0000 ++++ setup.py 2011-11-24 22:05:37.913149693 +0000 +@@ -4,10 +4,10 @@ + import glob + + # Directory where idnkit header files are installed. +-idnkit_include_dir = '/usr/local/include' ++idnkit_include_dir = '%%LOCALBASE%%/include' + + # Directory where libidnkitlite resides. +-idnkit_library_dir = '/usr/local/lib' ++idnkit_library_dir = '%%LOCALBASE%%/lib' + + setup(name='idnkit-python', + version='2.1', |