| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/x11-toolkits/py-fltk/files/ |
Upload File : |
--- setup.py.orig 2016-12-29 09:36:33 UTC
+++ setup.py
@@ -106,7 +106,7 @@ elif sys.platform.startswith('linux'):
compile_arg_list.append('-Werror=format-security')
lib_dir_list = [fltk_lib_dir, '/usr/lib']
lib_list = ["fltk"]
-elif sys.platform in ['freebsd4','freebsd5','freebsd6','freebsd7', 'sunos5']:
+elif sys.platform[0:7] == 'freebsd':
print("Building for: %s"%sys.platform)
def_list = [('UNIX', '1')]
lib_dir_list = [fltk_lib_dir,'/usr/X11R6/lib','/usr/lib']
@@ -323,7 +323,6 @@ setup (name = 'pyFltk',
description = 'This is a Python wrapper for the FLTK',
ext_modules = [module1],
packages = ['fltk'],
- package_data={'fltk': ['test/*.*', 'docs/*.*']},
)