mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
7de9634099
Akamaru is a simple, but fun, physics engine prototype. It's named after the super awesome ninja dog, Akamaru, from the Naruto anime and based on the article Advanced Character Physics by Thomas Jakobsen on Verlet integration. It contains a very cool dock, called kiba. Submitted by: Phillip Neumann <pneumann@gmail.com> Approved by: portmgr (implicit, kris)
44 lines
1.3 KiB
Makefile
44 lines
1.3 KiB
Makefile
# New ports collection makefile for: akamaru
|
|
# Date created: 2006 10 10
|
|
# Whom: Phillip Neumann <pneumann@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= akamaru
|
|
PORTVERSION= 0.1
|
|
CATEGORIES= deskutils gnome
|
|
MASTER_SITES= http://people.freedesktop.org/~krh/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= pneumann@gmail.com
|
|
COMMENT= Simple, but fun, physics engine prototype
|
|
|
|
BUILD_DEPENDS= gtk-demo:${PORTSDIR}/x11-toolkits/gtk20
|
|
RUN_DEPENDS= gtk-demo:${PORTSDIR}/x11-toolkits/gtk20 \
|
|
xcompmgr:${PORTSDIR}/x11-wm/xcompmgr
|
|
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gconf2 gnomehier
|
|
GCONF_SCHEMAS= kiba.schemas
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
|
|
${WRKSRC}/populate-dock.sh
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/dock ${PREFIX}/bin/kiba-dock
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/akamaru ${PREFIX}/bin/akamaru
|
|
@${INSTALL_DATA} ${WRKSRC}/kiba.schemas ${LOCALBASE}/etc/gconf/schemas
|
|
@${MKDIR} ${PREFIX}/share/${PORTNAME}
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/populate-dock.sh ${PREFIX}/share/${PORTNAME}
|
|
@${SETENV} GCONF_CONFIG_SOURCE=${GCONF_CONFIG_SOURCE} gconftool-2 --makefile-install-rule ${PREFIX}/etc/gconf/schemas/kiba.schemas
|
|
|
|
post-install:
|
|
@${ECHO_MSG}
|
|
@${ECHO_MSG} "*** By default kiba-dock is empty."
|
|
@${ECHO_MSG} "*** To add launchers, look and run the script ${PREFIX}/share/${PORTNAME}/populate-dock.sh"
|
|
@${ECHO_MSG}
|
|
|
|
.include <bsd.port.mk>
|