diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-07-27 23:37:21 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-07-27 23:37:21 +0800 |
commit | 203e3c6a1227277e3b5d6337046d4f2489c98b9e (patch) | |
tree | 7a388df3324d9660b94bedb15f51ab93b9fcbb9e /math | |
parent | 3b6eea408205c3f35883c202c8663a8c5c6f5989 (diff) | |
download | freebsd-ports-gnome-203e3c6a1227277e3b5d6337046d4f2489c98b9e.tar.gz freebsd-ports-gnome-203e3c6a1227277e3b5d6337046d4f2489c98b9e.tar.zst freebsd-ports-gnome-203e3c6a1227277e3b5d6337046d4f2489c98b9e.zip |
Add python libraries into list of libs returned by libguppiConf.sh script,
so other pacages (e.g. gnucash) will be able to link with libguppi.
Diffstat (limited to 'math')
-rw-r--r-- | math/guppi/Makefile | 2 | ||||
-rw-r--r-- | math/guppi/files/patch-Makefile.in | 17 |
2 files changed, 16 insertions, 3 deletions
diff --git a/math/guppi/Makefile b/math/guppi/Makefile index 72b8241e69c6..9505d96a9783 100644 --- a/math/guppi/Makefile +++ b/math/guppi/Makefile @@ -7,7 +7,7 @@ PORTNAME= guppi PORTVERSION= 0.35.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= stable/sources/Guppi diff --git a/math/guppi/files/patch-Makefile.in b/math/guppi/files/patch-Makefile.in index 64692ed53295..a0a0c9145e80 100644 --- a/math/guppi/files/patch-Makefile.in +++ b/math/guppi/files/patch-Makefile.in @@ -1,8 +1,8 @@ $FreeBSD$ ---- Makefile.in 2001/05/21 11:59:08 1.1 -+++ Makefile.in 2001/05/21 12:16:32 +--- Makefile.in.orig Fri Jul 27 17:45:27 2001 ++++ Makefile.in Fri Jul 27 18:18:46 2001 @@ -188,11 +188,11 @@ appdir = $(datadir)/apps/Applications app_DATA = guppi.desktop @@ -17,3 +17,16 @@ $FreeBSD$ aclocal_DATA = libguppi.m4 EXTRA_DIST = ChangeLog README AUTHORS NEWS BIBLIOGRAPHY Guppi.spec Guppi.spec.in libguppiConf.sh.in guppi.desktop libguppi.m4 xml-i18n-extract.in xml-i18n-merge.in xml-i18n-update.in +@@ -548,10 +548,10 @@ + + + libguppiConf.sh: libguppiConf.sh.in Makefile +- sed -e 's?\@LIBGUPPI_LIBDIR\@?$(LIBGUPPI_LIBDIR)?g' \ ++ sed -e 's?\@LIBGUPPI_LIBDIR\@?$(LIBGUPPI_LIBDIR) $(PY_LIB_LOC)?g' \ + -e 's?\@LIBGUPPI_INCLUDEDIR\@?$(LIBGUPPI_INCLUDEDIR)?g' \ + -e 's?\@VERSION\@?$(VERSION)?g' \ +- -e 's?\@LIBGUPPI_LIBS\@?$(LIBGUPPI_LIBS)?g' \ ++ -e 's?\@LIBGUPPI_LIBS\@?$(LIBGUPPI_LIBS) $(PY_LIBS) $(PTHREAD_LIB)?g' \ + < $(srcdir)/libguppiConf.sh.in > libguppiConf.tmp \ + && mv libguppiConf.tmp libguppiConf.sh + |