blob: 5fb2f5b75a497adae3c3d4462fc0294521466b29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# $NetBSD: Makefile,v 1.10 2001/02/06 03:16:57 fredb Exp $
DISTNAME= xpuyopuyo-0.9.1
CATEGORIES= games x11
MASTER_SITES= http://chaos2.org/xpuyopuyo/ \
http://lenin.dabney.caltech.edu./~justins/xpuyopuyo/
MAINTAINER= jlam@netbsd.org
HOMEPAGE= http://chaos2.org/xpuyopuyo/
BUILD_DEPENDS+= ${LOCALBASE}/bin/autoreconf:../../devel/autoconf
BUILD_DEPENDS+= ${LOCALBASE}/bin/automake:../../devel/automake
DEPENDS+= gtk+-1.2.*:../../x11/gtk
DEPENDS+= libmikmod>=3.1.9:../../audio/libmikmod
USE_GMAKE= YES
USE_X11BASE= YES
USE_XPM= YES
USE_LIBTOOL= YES
LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig
GNU_CONFIGURE= YES
CONFIGURE_ARGS+= --with-gnome # install desktop and pixmap files
CONFIGURE_ENV+= ac_cv_path_GNOME_CONFIG="${GNOME_CONFIG}"
GNOME_CONFIG= ${WRKDIR}/gnome-config
pre-configure:
cd ${WRKSRC} && ${LOCALBASE}/bin/autoheader && ${LOCALBASE}/bin/automake --gnu && ${LOCALBASE}/bin/autoreconf --force
${SED} -e "s,@PREFIX@,${PREFIX},g" ${FILESDIR}/gnome-config \
> ${GNOME_CONFIG}
${CHMOD} +x ${GNOME_CONFIG}
.include "../../mk/bsd.pkg.mk"
|