45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
|
# $OpenBSD: Makefile,v 1.1.1.1 2006/11/21 18:38:48 ajacoutot Exp $
|
||
|
|
||
|
COMMENT= "GUI widget library used in MakeHuman"
|
||
|
|
||
|
DISTNAME= mhgui-0.1
|
||
|
SHARED_LIBS += mhgui 0.0 # .0.0
|
||
|
CATEGORIES= graphics
|
||
|
|
||
|
HOMEPAGE= http://www.dedalo-3d.com/
|
||
|
|
||
|
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
||
|
|
||
|
# LGPL
|
||
|
PERMIT_PACKAGE_CDROM= Yes
|
||
|
PERMIT_PACKAGE_FTP= Yes
|
||
|
PERMIT_DISTFILES_CDROM= Yes
|
||
|
PERMIT_DISTFILES_FTP= Yes
|
||
|
|
||
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=makehuman/}
|
||
|
|
||
|
WANTLIB= GL GLU ICE SM X11 Xi Xmu m pthread z
|
||
|
|
||
|
BUILD_DEPENDS= :pkgconfig-*:devel/pkgconfig
|
||
|
LIB_DEPENDS= animorph::graphics/animorph \
|
||
|
glut.>=3::graphics/glut \
|
||
|
png.>=5::graphics/png
|
||
|
|
||
|
USE_X11= Yes
|
||
|
USE_LIBTOOL= Yes
|
||
|
CONFIGURE_STYLE=gnu
|
||
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include \
|
||
|
-I${LOCALBASE}/include/GL \
|
||
|
-I${LOCALBASE}/include/libpng" \
|
||
|
LDFLAGS="-L${LOCALBASE}/lib -lpthread -lz -lm"
|
||
|
|
||
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
|
||
|
|
||
|
pre-configure:
|
||
|
perl -pi -e 's,packagedocdir=doc,packagedocdir=share/doc,g' \
|
||
|
${WRKSRC}/configure
|
||
|
perl -pi -e 's,doc/mhgui,share/doc/mhgui,g' \
|
||
|
${WRKSRC}/Makefile.in
|
||
|
|
||
|
.include <bsd.port.mk>
|