diff options
author | Ade Lovett <ade@FreeBSD.org> | 2001-04-23 17:06:31 +0000 |
---|---|---|
committer | Ade Lovett <ade@FreeBSD.org> | 2001-04-23 17:06:31 +0000 |
commit | ce8986810e8d67f148d5e33b8aa8648da056e841 (patch) | |
tree | 2a44c42824e1ffc258f6f67e098340181e35370b /textproc | |
parent | add surf (diff) |
Use a PREFIX hack (from lang/librep) instead of USE_X_PREFIX (which has
a few extra undesired consequences)
Submitted by: sobomax
Notes
Notes:
svn path=/head/; revision=41834
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/scrollkeeper/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/textproc/scrollkeeper/Makefile b/textproc/scrollkeeper/Makefile index 065a9da90ef2..6f8d2c9473d1 100644 --- a/textproc/scrollkeeper/Makefile +++ b/textproc/scrollkeeper/Makefile @@ -7,7 +7,7 @@ PORTNAME= scrollkeeper PORTVERSION= 0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc gnome MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ ${MASTER_SITE_GNOME:S,%SUBDIR%,stable/sources/scrollkeeper,} @@ -17,11 +17,11 @@ MAINTAINER= sobomax@FreeBSD.org LIB_DEPENDS= xml.5:${PORTSDIR}/textproc/libxml -# It has to go in X_PREFIX to work with the rest of GNOME, for which -# scrollkeeper was primarily designed in the first place. It's an -# exceptionally deep dependency (gnomelibs needs it), so to put it -# in the right place, we have to do this kludge -USE_X_PREFIX= yes +# Don't use USE_X_PREFIX - the port doesn't really require X11 to run. +# The reason why it should be in X11BASE is that GNOME is the primary +# (only?) consumer of this port, and BadThings[tm] happen if it's not +# put in the right place. +PREFIX?= ${X11BASE} USE_GMAKE= yes USE_LIBTOOL= yes |