1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

audio/py-pyliblo: update 0.9.1 -> 0.9.2

- Update the setup.py patch
- Update the port with USES=python

Approved by:	mentors (implicit)
This commit is contained in:
Bartek Rutkowski 2014-09-17 11:09:00 +00:00
parent 3a4a25974f
commit 74f16ca6d1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=368363
3 changed files with 18 additions and 19 deletions

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= pyliblo
PORTVERSION= 0.9.1
PORTREVISION= 1
PORTVERSION= 0.9.2
CATEGORIES= audio python
MASTER_SITES= http://das.nasophon.de/download/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -16,10 +15,10 @@ LICENSE= LGPL21
BUILD_DEPENDS= pyrex>=0.9.4:${PORTSDIR}/devel/pyrex
LIB_DEPENDS= liblo.so:${PORTSDIR}/audio/liblo
USE_PYTHON= yes
USE_PYDISTUTILS= yes
MAKE_ENV+= PREFIX=${PREFIX} LOCALBASE=${LOCALBASE}
LDFLAGS+= -L${LOCALBASE}/lib
USES= python
USE_PYTHON= distutils
MAKE_ENV+= PREFIX=${PREFIX} LOCALBASE=${LOCALBASE}
LDFLAGS+= -L${LOCALBASE}/lib
OPTIONS_DEFINE= DOCS

View File

@ -1,2 +1,2 @@
SHA256 (pyliblo-0.9.1.tar.gz) = fb9b0dbd6f3c77b621fd45db56eed470dae2ed1325a49611c2ed0a07eefff4ab
SIZE (pyliblo-0.9.1.tar.gz) = 82376
SHA256 (pyliblo-0.9.2.tar.gz) = 382ee7360aa00aeebf1b955eef65f8491366657a626254574c647521b36e0eb0
SIZE (pyliblo-0.9.2.tar.gz) = 100079

View File

@ -1,24 +1,24 @@
--- setup.py.orig 2010-10-25 15:47:52.000000000 +0800
+++ setup.py 2010-10-25 15:54:41.000000000 +0800
@@ -39,6 +39,7 @@
--- setup.py.orig 2014-09-17 12:36:01.069734246 +0200
+++ setup.py 2014-09-17 12:36:49.484953374 +0200
@@ -45,6 +45,7 @@
'-fno-strict-aliasing',
'-Werror-implicit-function-declaration',
'-Wfatal-errors',
+ '-I%%LOCALBASE%%/include/',
+ '-I%%LOCALBASE%%/include/',
],
libraries = ['lo']
)
@@ -53,12 +54,7 @@
@@ -66,12 +67,7 @@
'scripts/send_osc.py',
'scripts/dump_osc.py',
]
],
- data_files = [
- ('share/man/man1', [
- 'scripts/send_osc.1',
- 'scripts/dump_osc.1',
- ]),
- ]
+ data_files = []
else:
# doesn't work with Python 3.x yet
scripts = []
- ],
+ data_files = [],
cmdclass = cmdclass,
ext_modules = ext_modules
)