diff options
author | Jeremy Lea <reg@FreeBSD.org> | 2000-10-05 07:10:50 +0000 |
---|---|---|
committer | Jeremy Lea <reg@FreeBSD.org> | 2000-10-05 07:10:50 +0000 |
commit | b7bdcd418e7aca3dd98409e16a4c4ae9bc289d02 (patch) | |
tree | 1b4ff069c830fd60b78ef9613fa9aa5abef69f83 /astro | |
parent | bebd89314e57ff34ea47724c5605a0f32c425dcf (diff) | |
download | ports-b7bdcd418e7aca3dd98409e16a4c4ae9bc289d02.tar.gz ports-b7bdcd418e7aca3dd98409e16a4c4ae9bc289d02.zip |
Notes
Diffstat (limited to 'astro')
-rw-r--r-- | astro/seti_applet/Makefile | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/astro/seti_applet/Makefile b/astro/seti_applet/Makefile index de0735e999eb..34b99df1c530 100644 --- a/astro/seti_applet/Makefile +++ b/astro/seti_applet/Makefile @@ -13,24 +13,23 @@ MASTER_SITE_SUBDIR= ${PORTNAME:S/_/-/} MAINTAINER= th@cis.ibaraki.ac.jp -LIB_DEPENDS= panel_applet.4:${PORTSDIR}/x11/gnomecore \ - gnome.4:${PORTSDIR}/x11/gnomelibs \ - gtop.1:${PORTSDIR}/devel/libgtop -RUN_DEPENDS= setiathome:${PORTSDIR}/astro/setiathome \ - gnomecc:${PORTSDIR}/sysutils/gnomecontrolcenter +LIB_DEPENDS= gtop.1:${PORTSDIR}/devel/libgtop +RUN_DEPENDS= setiathome:${PORTSDIR}/astro/setiathome USE_X_PREFIX= yes - -GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config -GTK_CONFIG?= ${X11BASE}/bin/gtk12-config - +USE_GNOME= yes USE_LIBTOOL= yes -CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \ - GTK_CONFIG="${GTK_CONFIG}" \ - CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib" + +pre-patch: + @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ + s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure + @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ + 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ + s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' post-install: - ${SED} "s|%%LOCALBASE%%|${LOCALBASE}|g" ${PKGMESSAGE} + @${SED} "s|%%LOCALBASE%%|${LOCALBASE}|g" ${PKGMESSAGE} .include <bsd.port.mk> |