openbsd-ports/devel/gtl/Makefile
reinhard e2204ecc2c Graph Template Library (GTL) is based on the Standart Template Library
(STL), which is supposed to become a part of the C++ standart library
and therefore is an ideal basis when writing portable programs.
 
For the design of the GTL's API the API of LEDA is used as a base. GTL
contains the classes needed to work with graphs, nodes and edges and
some basic algorithms as building blocks for more complex graph
algorithms. Further algorithms are under work.
 
Unfortunately, STL has no support for graphs and graph algorithms.
However, graphs are widely used to model complex relational
structures.

MAINTAINER=     Peter Valchev <pvalchev@toxiclinux.org>
2001-01-19 16:33:15 +00:00

38 lines
1.3 KiB
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2001/01/19 16:33:15 reinhard Exp $
DISTNAME= GTL-0.3.3
PKGNAME= gtl-0.3.3
CATEGORIES= devel
NEED_VERSION= 1.351
MAINTAINER= Peter Valchev <pvalchev@toxiclinux.org>
LICENSE_TYPE= no-commercial-use
PERMIT_PACKAGE_CDROM= "redistribution requires written permission"
PERMIT_PACKAGE_FTP= "redistribution requires written permission"
PERMIT_DISTFILES_CDROM= "redistribution requires written permission"
PERMIT_DISTFILES_FTP= "redistribution requires written permission"
HOMEPAGE= http://infosun.fmi.uni-passau.de/GTL/
MASTER_SITES= ${HOMEPAGE}archive/
FAKE_FLAGS= PREFIX="${WRKINST}${PREFIX}"
CONFIGURE_STYLE= gnu
MAKE_ENV+= GTL_VERS="0:3"
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/gtl
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/gtl/icons
${INSTALL_DATA} ${WRKSRC}/doc/html/*.html ${PREFIX}/share/doc/gtl
${INSTALL_DATA} ${WRKSRC}/doc/html/icons/*.gif ${WRKSRC}/doc/html/icons/*.jpeg ${PREFIX}/share/doc/gtl/icons
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/gtl
${INSTALL_DATA_DIR} ${PREFIX}/include/GTL
${INSTALL_DATA} ${WRKSRC}/include/GTL/*.h ${PREFIX}/include/GTL
${INSTALL_DATA} ${WRKSRC}/src/libGTL.la ${PREFIX}/lib/libGTL.la
${INSTALL_DATA} ${WRKSRC}/src/.libs/libGTL.so.0.3 ${PREFIX}/lib/libGTL.so.0.3
${INSTALL_DATA} ${WRKSRC}/src/.libs/libGTL.a ${PREFIX}/lib/libGTL.a
.include <bsd.port.mk>