diff options
author | marcus <marcus@FreeBSD.org> | 2002-12-02 00:10:54 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2002-12-02 00:10:54 +0000 |
commit | 865d9721b0efa843f83d8ca18139173b39e5c408 (patch) | |
tree | 2ccbd059529ad53d9d69d152531a77e0f72912c2 /astro | |
parent | 82646a101748fb1d1fc53ee8033c960ef27c7930 (diff) | |
download | FreeBSD-ports-865d9721b0efa843f83d8ca18139173b39e5c408.zip FreeBSD-ports-865d9721b0efa843f83d8ca18139173b39e5c408.tar.gz |
Fix package building due to GNOME'isms.
Reported by: bento
Requested by: portmgr (kris)
Diffstat (limited to 'astro')
-rw-r--r-- | astro/seti_applet/Makefile | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/astro/seti_applet/Makefile b/astro/seti_applet/Makefile index 9e56eb2..c5d9c37 100644 --- a/astro/seti_applet/Makefile +++ b/astro/seti_applet/Makefile @@ -17,13 +17,13 @@ MAINTAINER= cyrille.lefevre@laposte.net # Global variables # -LIB_DEPENDS= gtop.1:${PORTSDIR}/devel/libgtop \ - intl.4:${PORTSDIR}/devel/gettext +LIB_DEPENDS= gtop.1:${PORTSDIR}/devel/libgtop RUN_DEPENDS= ${LOCALBASE}/sbin/setiathome:${PORTSDIR}/astro/setiathome USE_REINPLACE= yes USE_X_PREFIX= yes -USE_GNOME= yes +USE_GNOMENG= yes +USE_GNOME= gnomeprefix gnomehack libpanel gnomecanvas USE_LIBTOOL= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" @@ -40,18 +40,13 @@ XARGS?= xargs # Post-patch # -post-patch: patch-configure patch-makefiles-in \ - patch-seti_applet patch-pkgmessage +post-patch: patch-configure patch-seti_applet \ + patch-pkgmessage patch-configure: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g;\ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure -patch-makefiles-in: - @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ - 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g;\ - s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' - patch-seti_applet: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/src/seti_applet.c |