13c5839543
From ChangeLog: 2011-09-23 unidecode 0.04.9 * Fixed Python 2.5 installation issue. 2011-09-22 unidecode 0.04.8 * License change to GPL to fit better with other Python modules and to remove the issue of depending on Perl for licensing terms. * Always return a string object on Python 2.x. Before this patch, unidecode() returned a unicode object on Python 2.x if the input was a unicode object that contained ASCII characters. Behaviour on Python 3.x remains unchanged. (thanks to Wesley Yarde) PR: ports/165344 Submitted by: maintainer, douglas@douglasthrift.net
24 lines
494 B
Makefile
24 lines
494 B
Makefile
# New ports collection makefile for: py-unidecode
|
|
# Date created: 22 October 2009
|
|
# Whom: Douglas Thrift
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= unidecode
|
|
PORTVERSION= 0.04.9
|
|
CATEGORIES= converters python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= Unidecode-${PORTVERSION}
|
|
|
|
MAINTAINER= douglas@douglasthrift.net
|
|
COMMENT= ASCII transliterations of Unicode text
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_PKGNAME= Unidecode
|
|
|
|
.include <bsd.port.mk>
|