diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-07-21 16:05:23 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-07-21 16:05:23 +0000 |
commit | 272171f94ce769ed85ec278f60fb74104a8230c1 (patch) | |
tree | fd49d69d0c3ab8ad3703900fdad21abc4bc653dd /games/gcompris2/Makefile | |
parent | Update to version 1.11. (diff) |
Add gcompris - a simple Gnome-based education game for children starting at 3.
Recommended to all committers by the -core!
Notes
Notes:
svn path=/head/; revision=30936
Diffstat (limited to 'games/gcompris2/Makefile')
-rw-r--r-- | games/gcompris2/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/games/gcompris2/Makefile b/games/gcompris2/Makefile new file mode 100644 index 000000000000..7acfdd17bbb8 --- /dev/null +++ b/games/gcompris2/Makefile @@ -0,0 +1,37 @@ +# New ports collection makefile for: gcompris +# Date created: 21 July 2000 +# Whom: Maxim Sobolev +# +# $FreeBSD$ +# + +PORTNAME= gcompris +PORTVERSION= 0.2.3 +CATEGORIES= games gnome +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +EXTRACT_SUFX= .tgz + +MAINTAINER= sobomax@FreeBSD.org + +BUILD_DEPENDS= ${LOCALBASE}/share/automake/install-sh:${PORTSDIR}/devel/automake +LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \ + Xpm.4:${PORTSDIR}/graphics/xpm + +USE_X_PREFIX= yes +USE_GMAKE= yes +GNU_CONFIGURE= yes + +GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + +CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \ + GTK_CONFIG="${GTK_CONFIG}" \ + CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +post-extract: + @${LN} -sf ${LOCALBASE}/share/automake/install-sh ${WRKSRC}/install-sh + @${LN} -sf ${LOCALBASE}/share/automake/mkinstalldirs ${WRKSRC}/mkinstalldirs + +.include <bsd.port.mk> |