1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-05 01:55:52 +00:00
freebsd-ports/graphics/libspiro/Makefile
Martin Wilke 8f63354874 Spiro is the creation of Raph Levien. It simplifies the drawing of beautiful
curves.

Using bezier splines an artist can easily draw curves with the same slope on
either side of an on-curve point. Spiros, on the other hand, are based on
clothoid splines which make it easy to maintain constant curvature as well as
constant slope. Such curves will simply look nicer.

Raph Levien's spiro splines only use on-curve points and so are easier to use
and more intuitive to the artist.

This library will take an array of spiro control points and convert them into a
series of bezier splines which can then be used in the myriad of ways the world
has come to use beziers.

WWW: http://libspiro.sourceforge.net/

PR:		ports/119541
Submitted by:	Naram Qashat <cyberbotx at cyberbotx.com>
2008-01-12 16:16:57 +00:00

25 lines
511 B
Makefile

# New ports collection makefile for: libspiro
# Date created: 10 Janurary 2008
# Whom: Naram Qashat <cyberbotx@cyberbotx.com>
#
# $FreeBSD$
#
PORTNAME= libspiro
DISTVERSION= 20071029
CATEGORIES= graphics
MASTER_SITES= SF
DISTNAME= ${PORTNAME}_src-${PORTVERSION}
MAINTAINER= cyberbotx@cyberbotx.com
COMMENT= Library to convert clothoid splines into bezier splines
USE_BZIP2= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION}
.include <bsd.port.mk>