diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2002-05-24 05:23:11 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2002-05-24 05:23:11 +0000 |
commit | 4025fc1cf5bdad37ab01035c541d4b89e974dbc3 (patch) | |
tree | c58fda265dd1c42814f013f3b1c96c0970020fa3 | |
parent | 181e18530c03fd77d67d2d02595692932d03fbc8 (diff) | |
download | ports-4025fc1cf5bdad37ab01035c541d4b89e974dbc3.tar.gz ports-4025fc1cf5bdad37ab01035c541d4b89e974dbc3.zip |
The configure script demands Gnome. Appease it.
Reported by: kris
Notes
Notes:
svn path=/head/; revision=59858
-rw-r--r-- | astro/celestia/Makefile | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/astro/celestia/Makefile b/astro/celestia/Makefile index a651c9816261..f8c5d8765f45 100644 --- a/astro/celestia/Makefile +++ b/astro/celestia/Makefile @@ -23,7 +23,8 @@ PLIST= ${WRKDIR}/pkg-plist USE_GMAKE= yes USE_MESA= yes USE_X_PREFIX= yes -WANT_GTK= yes +USE_GNOMELIBS= yes +USE_GTK= yes CONFIGURE_ARGS= --prefix=${PREFIX} \ --includedir="${LOCALBASE}/include" \ @@ -97,12 +98,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/textures/medres/*.??? \ ${DATADIR}/textures/medres/ -.include <bsd.port.pre.mk> - -.if defined(HAVE_GTK) -USE_GTK= yes -.else -CONFIGURE_ARGS+=--without-gtk -.endif - -.include <bsd.port.post.mk> +.include <bsd.port.mk> |