51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.57 2017/04/10 11:46:37 sthen Exp $
|
|
|
|
COMMENT= draw pictures of the earth textured by an image
|
|
|
|
DISTNAME= xplanet-1.3.0
|
|
REVISION= 1
|
|
CATEGORIES= astro geo x11
|
|
|
|
MAINTAINER= Robert Nagy <robert@openbsd.org>
|
|
|
|
HOMEPAGE= http://xplanet.sourceforge.net/
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=xplanet/}
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += X11 c charset fontconfig freetype gif glib-2.0 gobject-2.0
|
|
WANTLIB += iconv intl jpeg m pango-1.0 pangoft2-1.0 png pthread
|
|
WANTLIB += ${LIBCXX} z
|
|
|
|
LIB_DEPENDS= devel/gettext \
|
|
devel/pango \
|
|
graphics/giflib \
|
|
graphics/jpeg \
|
|
graphics/png \
|
|
devel/glib2
|
|
|
|
RUN_DEPENDS= geo/openbsd-developers
|
|
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --without-xscreensaver \
|
|
--without-pnm --without-tiff \
|
|
--without-cspice
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${X11BASE}/lib -L${LOCALBASE}/lib"
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${FILESDIR}/openbsd_markers \
|
|
${PREFIX}/share/xplanet/config/
|
|
${INSTALL_PROGRAM_DIR} ${PREFIX}/share/xplanet/scripts
|
|
${INSTALL_SCRIPT} ${FILESDIR}/openbsd_markers.sh \
|
|
${PREFIX}/share/xplanet/scripts/
|
|
|
|
@perl -pi -e 's,%%LOCALBASE%%,${LOCALBASE},' \
|
|
${PREFIX}/share/xplanet/config/openbsd_markers \
|
|
${PREFIX}/share/xplanet/scripts/openbsd_markers.sh
|
|
|
|
.include <bsd.port.mk>
|