ac47c1ad42
This C library allows to convert cyrillic text from any to any of the following cyrillic charsets: windows-1251, koi8-r, koi8-u, iso-8859-5, x-mac-cyrillic and ibm866. Automatic detection of charset is possible for any of those. The library also contains a number of automation features and useful service wrappers that are ready to be easily plugged into any application whenever one needs more wise features instead of just dumb converting. PR: 60042 Submitted by: Pavel Novikov <pavel@ext.by>
26 lines
589 B
Makefile
26 lines
589 B
Makefile
# New ports collection makefile for: libcyrillic
|
|
# Date created: 8 December 2003
|
|
# Whom: Pavel Novikov
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libcyrillic
|
|
PORTVERSION= 1.9
|
|
CATEGORIES= russian converters textproc
|
|
MASTER_SITES= http://ext.by/libcyrillic/
|
|
PKGNAMEPREFIX=
|
|
DISTNAME= ${PORTNAME:S/^lib//}-${PORTVERSION}
|
|
|
|
MAINTAINER= pavel@ext.by
|
|
COMMENT= Text manipulation and autodetection for 6 major cyrillic charsets
|
|
|
|
MAKE_ENV= WRKSRC="${WRKSRC}" CFLAGS="${CFLAGS}"
|
|
MAKEFILE= ${FILESDIR}/Makefile.bsd
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.if !defined(WITHOUT_OPTIMIZE)
|
|
CFLAGS+= -O2
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|