freebsd-ports/games/pets/Makefile
Stanislav Sedov 422bce3414 - Return my ports back to the pool. I was unable to make any fixes to
my ports in the past 3 weeks while ports were broken on any 10.x
  machines, which means I'm unable to maintain them.  So let people know
  that there's no available support for them until things are back to
  normal (which also means that anyone with spare time will be able
  to fix them without getting approval).
2011-10-24 03:33:20 +00:00

43 lines
1.0 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
PORTREVISION= 6
CATEGORIES= games
MASTER_SITES= http://www.loria.fr/~rougier/pub/Software/
MAINTAINER= ports@FreeBSD.org
COMMENT= Funny pets to follow your mouse pointer
WRKSRC= ${WRKDIR}/pet-${PORTVERSION}
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>