diff options
author | marcus <marcus@FreeBSD.org> | 2004-06-26 03:28:37 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-06-26 03:28:37 +0000 |
commit | d16c96bd099c7c2ebba94d296660659798ef8a50 (patch) | |
tree | 2a76b49dcafc6264be1162f63fadc95d46c94b0a /x11-toolkits/gtk20 | |
parent | ec42cd092e6b11dd74e12bef81f9e08f113a31d7 (diff) | |
download | FreeBSD-ports-d16c96bd099c7c2ebba94d296660659798ef8a50.zip FreeBSD-ports-d16c96bd099c7c2ebba94d296660659798ef8a50.tar.gz |
Add support for a mime database in ${X11BASE} as well as ${LOCALBASE}.
Requested by: pav
Diffstat (limited to 'x11-toolkits/gtk20')
-rw-r--r-- | x11-toolkits/gtk20/Makefile | 4 | ||||
-rw-r--r-- | x11-toolkits/gtk20/files/patch-gtk_xdgmime_xdgmime.c | 11 |
2 files changed, 14 insertions, 1 deletions
diff --git a/x11-toolkits/gtk20/Makefile b/x11-toolkits/gtk20/Makefile index 9acc0c1..e14465d 100644 --- a/x11-toolkits/gtk20/Makefile +++ b/x11-toolkits/gtk20/Makefile @@ -7,6 +7,7 @@ PORTNAME= gtk PORTVERSION= 2.4.3 +PORTREVISION= 1 CATEGORIES= x11-toolkits MASTER_SITES= ${MASTER_SITE_GNOME:S,%SUBDIR%,sources/gtk+/2.4,} \ ftp://ftp.gtk.org/pub/gtk/v2.3/ \ @@ -66,7 +67,8 @@ post-patch: ${XARGS} ${REINPLACE_CMD} -e 's|-lgmodule|@GMODULE_LIBS@|g' @${REINPLACE_CMD} -e 's|[{]libdir[}]/locale|{datadir}/locale|g' \ ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ + @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g ; \ + s|%%X11BASE%%|${X11BASE}|g' \ ${WRKSRC}/gtk/xdgmime/xdgmime.c pre-build: diff --git a/x11-toolkits/gtk20/files/patch-gtk_xdgmime_xdgmime.c b/x11-toolkits/gtk20/files/patch-gtk_xdgmime_xdgmime.c new file mode 100644 index 0000000..14804bd --- /dev/null +++ b/x11-toolkits/gtk20/files/patch-gtk_xdgmime_xdgmime.c @@ -0,0 +1,11 @@ +--- gtk/xdgmime/xdgmime.c.orig Wed Jun 23 20:19:43 2004 ++++ gtk/xdgmime/xdgmime.c Wed Jun 23 20:19:56 2004 +@@ -98,7 +98,7 @@ + + xdg_data_dirs = getenv ("XDG_DATA_DIRS"); + if (xdg_data_dirs == NULL) +- xdg_data_dirs = "/usr/local/share/:/usr/share/"; ++ xdg_data_dirs = "/usr/local/share/:%%X11BASE%%/share/:/usr/share/"; + + ptr = xdg_data_dirs; + |