1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-16 03:24:07 +00:00
freebsd-ports/games/pets/Makefile
Martin Wilke 82cd72dfe8 This is a port of an old program by Masayuki Koba
where a cute tiny kitty was following your mouse all over the screen.
There is also another animation with a tiny tux (see the art section
for povray sources).

PR:		ports/100941
Submitted by:	Stanislav Sedov <ssedov(at)mbsd.msk.ru>
Approved by:	krion (mentor)
2006-07-29 21:28:37 +00:00

43 lines
1.1 KiB
Makefile

# New ports collection makefile for: pets
# Date created: 2006-07-28
# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru>
#
# $MBSDlabs$
# $FreeBSD$
#
PORTNAME= pets
PORTVERSION= 1.0
CATEGORIES= games
MASTER_SITES= http://www.loria.fr/~rougier/software/downloads/
MAINTAINER= ssedov@mbsd.msk.ru
COMMENT= Funny pets to follow your mouse pointer
WRKSRC= ${WRKDIR}/pet-${PORTVERSION}
USE_X_PREFIX= yes
USE_GNOME= gtk20 pkgconfig
SUB_FILES= pkg-message
GTK_CFLAGS!= pkg-config gtk+-2.0 gdk-pixbuf-xlib-2.0 --cflags
GTK_LDFLAGS!= pkg-config gtk+-2.0 gdk-pixbuf-xlib-2.0 --libs
do-build:
(cd ${WRKSRC} && ${CXX} ${CFLAGS} ${GTK_CFLAGS}-c pet.cc)
(cd ${WRKSRC} && ${CXX} ${LDFLAGS} ${GTK_LDFLAGS} pet.o -o pets)
do-install:
${MKDIR} ${DATADIR}
${INSTALL_PROGRAM} ${WRKSRC}/pets ${PREFIX}/bin
@(cd ${WRKSRC}/data; ${PAX} -rw -p e -l . ${DATADIR})
@${FIND} ${DATADIR}/ -type f -name "*~" -delete
@${FIND} ${DATADIR}/ -type f -exec ${CHMOD} ${SHAREMODE} {} \;
@${FIND} ${DATADIR}/ -exec ${CHOWN} ${SHAREOWN} {} \;
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>