The board library allows simple drawings in:
* Encapsulated Postcript files (EPS); * XFig files (FIG); * Scalable Vector Graphics files (SVG). WWW: http://www.greyc.ensicaen.fr/~seb/board/
This commit is contained in:
parent
3d65b2b11f
commit
5567029b43
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=198270
5 changed files with 65 additions and 0 deletions
|
@ -338,6 +338,7 @@
|
|||
SUBDIR += libart
|
||||
SUBDIR += libart_lgpl
|
||||
SUBDIR += libaux
|
||||
SUBDIR += libboard
|
||||
SUBDIR += libcaca
|
||||
SUBDIR += libdrm
|
||||
SUBDIR += libemf
|
||||
|
|
43
graphics/libboard/Makefile
Normal file
43
graphics/libboard/Makefile
Normal file
|
@ -0,0 +1,43 @@
|
|||
# New ports collection makefile for: libboard
|
||||
# Date created: Fri 24 aug 2007
|
||||
# Whom: thierry@pompo.net
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= libboard
|
||||
PORTVERSION= 0.8.0
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= http://www.greyc.ensicaen.fr/~seb/board/download/
|
||||
|
||||
MAINTAINER= thierry@FreeBSD.org
|
||||
COMMENT= A vector graphics C++ library
|
||||
|
||||
HAS_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --prefix=${PREFIX}
|
||||
CONFIGURE_ENV= CXX=${CXX}
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
PORTDOCS= *
|
||||
|
||||
pre-configure:
|
||||
${REINPLACE_CMD} -e 's|-O3|${CXXFLAGS}|' ${WRKSRC}/${CONFIGURE_SCRIPT}
|
||||
|
||||
post-install:
|
||||
${MV} ${PREFIX}/lib/libboard.so ${PREFIX}/lib/libboard.so.0
|
||||
${LN} -sf ${PREFIX}/lib/libboard.so.0 ${PREFIX}/lib/libboard.so
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${DOCSDIR}
|
||||
cd ${WRKSRC}/doc/html/ && ${COPYTREE_SHARE} . ${DOCSDIR}/
|
||||
.endif
|
||||
|
||||
regression-test:
|
||||
(cd ${WRKDIR} && ${WRKSRC}/bin/arithmetic bec)
|
||||
.for ex in 1 2 3
|
||||
(cd ${WRKDIR} && ${WRKSRC}/bin/example${ex})
|
||||
.endfor
|
||||
${LS} -l ${WRKDIR}/arithm* ${WRKDIR}/draw*
|
||||
|
||||
.include <bsd.port.mk>
|
3
graphics/libboard/distinfo
Normal file
3
graphics/libboard/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (libboard-0.8.0.tar.gz) = 6e60f5915dd5e3bc989103f82ee1f6d3
|
||||
SHA256 (libboard-0.8.0.tar.gz) = c8b4d5036a08c1ec835c910e25c41051aadd6fd596d8e5be34dfaa938f3beeeb
|
||||
SIZE (libboard-0.8.0.tar.gz) = 130724
|
7
graphics/libboard/pkg-descr
Normal file
7
graphics/libboard/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
|||
The board library allows simple drawings in:
|
||||
|
||||
* Encapsulated Postcript files (EPS);
|
||||
* XFig files (FIG);
|
||||
* Scalable Vector Graphics files (SVG).
|
||||
|
||||
WWW: http://www.greyc.ensicaen.fr/~seb/board/
|
11
graphics/libboard/pkg-plist
Normal file
11
graphics/libboard/pkg-plist
Normal file
|
@ -0,0 +1,11 @@
|
|||
include/Board.h
|
||||
include/board/Board.h
|
||||
include/board/Color.h
|
||||
include/board/Point.h
|
||||
include/board/Rect.h
|
||||
include/board/Shapes.h
|
||||
include/board/Transforms.h
|
||||
lib/libboard.a
|
||||
lib/libboard.so
|
||||
lib/libboard.so.0
|
||||
@dirrm include/board
|
Loading…
Reference in a new issue