diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-07-11 18:22:15 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-07-11 18:22:15 +0000 |
commit | a1fa02a1b070463f943dedde2e84dd77161ce03c (patch) | |
tree | 96942c024c66f76a103b4cd43b2043d2504796c2 | |
parent | Update to 3.4.4. (diff) |
Fix build.
PR: ports/53766
Submitted by: Ports Fury
Notes
Notes:
svn path=/head/; revision=84698
-rw-r--r-- | deskutils/bulb/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/deskutils/bulb/Makefile b/deskutils/bulb/Makefile index 1eb7c90f9d04..1828ed4a670d 100644 --- a/deskutils/bulb/Makefile +++ b/deskutils/bulb/Makefile @@ -14,15 +14,15 @@ MAINTAINER= ports@FreeBSD.org COMMENT= GNOME applet to warn about task terminations USE_X_PREFIX= yes -USE_GNOME= yes +USE_GNOME= gnomelibs gnomeprefix libpanel +USE_REINPLACE= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib" + LDFLAGS="-L${LOCALBASE}/lib" -pre-patch: - @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ - s|DATADIRNAME=lib|DATADIRNAME=share|g ; \ - s|USE_INCLUDED_LIBINTL=yes|#USE_INCLUDED_LIBINTL=yes|g ; \ +post-patch: + @${REINPLACE_CMD} -e \ + 's|USE_INCLUDED_LIBINTL=yes|#USE_INCLUDED_LIBINTL=yes|g ; \ s|\$$\(top_builddir\)/intl/libintl.a|-lintl|g' ${WRKSRC}/configure .include <bsd.port.mk> |