mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
ead6beb358
The development of cal3d stopped in July 2006, about a week or two after the last release (0.11.0). It makes no sense to have both cal3d and cal3d-devel, so let's copy over the -devel port over to the stable one and remove the -devel port. There's no reason to set a deprecation period in this case. While here: * remove conflicts * Update the WWW to the new home page I've given graphics/cal3d a "fake" version of 0.11.1 to convey that it is an update to the previous version of 0.11.0 rather than to completely change the version scheme. PR: 203135 Approved by: maintainer timeout Discussed: portmgr (bapt)
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
# Created by: Stefan Walter <sw@gegenunendlich.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cal3d
|
|
PORTVERSION= 0.11.1 # see note below
|
|
CATEGORIES= graphics devel
|
|
MASTER_SITES= LOCAL/acm/cal3d
|
|
DISTNAME= cal3d-20060720
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= acm@FreeBSD.org
|
|
COMMENT= Skeletal based 3D character animation library written in C++
|
|
|
|
# Cal3D ceased development in July 2006
|
|
# The last version was labelled 0.11R2 (despite version 0.11 being released)
|
|
# The last Cal3D development version was "20060720".
|
|
# This becomes the new "stable" version, and it's given a fake version
|
|
# number of 0.11.1 to indicate it comes after 0.11.0 rather than changing
|
|
# the version scheme completely.
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= autoreconf libtool pathfix pkgconfig tar:bzip2
|
|
PATHFIX_MAKEFILEIN= Makefile.am
|
|
USE_LDCONFIG= yes
|
|
INSTALL_TARGET= install-strip
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|<istream>|<iostream>|' \
|
|
${WRKSRC}/src/cal3d/buffersource.h \
|
|
${WRKSRC}/src/cal3d/loader.h \
|
|
${WRKSRC}/src/cal3d/streamsource.h
|
|
@${REINPLACE_CMD} -e '/^all_libraries/d' \
|
|
${WRKSRC}/src/cal3d/Makefile.am
|
|
|
|
.include <bsd.port.mk>
|