mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-15 07:56:36 +00:00
be6c15b5c6
Add USES=xorg and USES=gl to ports in categories starting with 'g'. While here, try to sprinkle other USES (mostly gnome and sdl) as needed.
37 lines
765 B
Makefile
37 lines
765 B
Makefile
# Created by: Dmitry Marakasov <amdmi3@amdmi3.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= kudu
|
|
PORTVERSION= 0.1.2
|
|
PORTREVISION= 12
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= 3D skeletal animation tool, powered by GTK+ and OpenGL
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libgtkglext-x11-1.0.so:x11-toolkits/gtkglext
|
|
|
|
USES= compiler:c++11-lang gl localbase tar:bzip2 pkgconfig python:2.7
|
|
GNU_CONFIGURE= yes
|
|
USE_GL= gl
|
|
|
|
LIBS+= -lcompat -lm
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
PORTDATA= *
|
|
|
|
DESKTOP_ENTRIES="Kudu" \
|
|
"Edit 3D models" \
|
|
"${DATADIR}/images/logo.png" \
|
|
"kudu" \
|
|
"Graphics;3DGraphics;GTK;" \
|
|
true
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|COPYING||' ${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|