diff options
author | billf <billf@FreeBSD.org> | 2005-10-17 17:31:27 +0800 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 2005-10-17 17:31:27 +0800 |
commit | ba0b1db430f3471eaa21e7c3ed012ed43405ccbf (patch) | |
tree | df54c7a620ab3482bb124a670cc1fe14c4703212 | |
parent | e31584c393066b3b9799fd36cd7ab4c1d1523746 (diff) | |
download | freebsd-ports-gnome-ba0b1db430f3471eaa21e7c3ed012ed43405ccbf.tar.gz freebsd-ports-gnome-ba0b1db430f3471eaa21e7c3ed012ed43405ccbf.tar.zst freebsd-ports-gnome-ba0b1db430f3471eaa21e7c3ed012ed43405ccbf.zip |
0) fix hardcoded data directory
1) respect WITHOUT_X11
Noticed by: kris and his magical mystery cluster (#0)
-rw-r--r-- | graphics/stamp/Makefile | 12 | ||||
-rw-r--r-- | graphics/stamp/pkg-descr | 4 |
2 files changed, 11 insertions, 5 deletions
diff --git a/graphics/stamp/Makefile b/graphics/stamp/Makefile index 5100347ed5cd..03b20f363183 100644 --- a/graphics/stamp/Makefile +++ b/graphics/stamp/Makefile @@ -19,9 +19,17 @@ LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg USE_GETOPT_LONG=yes GNU_CONFIGURE= yes -CPPFLAGS= -I${LOCALBASE}/include -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" \ +CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="${LDFLAGS}" \ LIBS="-L${LOCALBASE}/lib" USE_GMAKE= unfortunatly +.if !defined(WITHOUT_X11) +USE_GNOME= gtk12 +.endif +USE_REINPLACE= i miss patch-xx + +post-patch: + @${REINPLACE_CMD} -e 's#/usr/local/share/stamp#${DATADIR}#' \ + ${WRKSRC}/configure .include <bsd.port.mk> diff --git a/graphics/stamp/pkg-descr b/graphics/stamp/pkg-descr index b6d7bbb1abdf..eb41195ae718 100644 --- a/graphics/stamp/pkg-descr +++ b/graphics/stamp/pkg-descr @@ -5,6 +5,4 @@ image via FTP, with the configuration of a stamprc file. It also features a "quad" option which will take the latest image and composite it with up to three previous images, while timestamping the latest one. -WWW: http://stamp.netpedia.net/ - -Bill Fumerola <billf@chc-chimes.com> +WWW: http://stamp.sourceforge.net/ |