diff options
author | ade <ade@FreeBSD.org> | 2001-04-24 01:06:31 +0800 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2001-04-24 01:06:31 +0800 |
commit | d4f932684e7949a7c877b0cafb0ccdb69af2ef40 (patch) | |
tree | 20ed54e14f7c98951a27bad4a280d117e874fe8b /textproc | |
parent | 54ccf787b9a244ac931513915ae8fe92701b6de1 (diff) | |
download | freebsd-ports-gnome-d4f932684e7949a7c877b0cafb0ccdb69af2ef40.tar.gz freebsd-ports-gnome-d4f932684e7949a7c877b0cafb0ccdb69af2ef40.tar.zst freebsd-ports-gnome-d4f932684e7949a7c877b0cafb0ccdb69af2ef40.zip |
Use a PREFIX hack (from lang/librep) instead of USE_X_PREFIX (which has
a few extra undesired consequences)
Submitted by: sobomax
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 |