diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2012-07-30 22:27:53 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2012-07-30 22:27:53 +0800 |
commit | edb174c66b614f079e0a7deb8839e225cc6b3a51 (patch) | |
tree | 29b076d14306808b26e12a10aa52e66e159904e4 | |
parent | 265a7230e50850706e3438e2fa1d83dc5486ca44 (diff) | |
download | marcuscom-ports-edb174c66b614f079e0a7deb8839e225cc6b3a51.tar marcuscom-ports-edb174c66b614f079e0a7deb8839e225cc6b3a51.tar.gz marcuscom-ports-edb174c66b614f079e0a7deb8839e225cc6b3a51.tar.bz2 marcuscom-ports-edb174c66b614f079e0a7deb8839e225cc6b3a51.tar.lz marcuscom-ports-edb174c66b614f079e0a7deb8839e225cc6b3a51.tar.xz marcuscom-ports-edb174c66b614f079e0a7deb8839e225cc6b3a51.tar.zst marcuscom-ports-edb174c66b614f079e0a7deb8839e225cc6b3a51.zip |
Remove is replaced by pkgconf.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@17005 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | devel/pkg-config/Makefile | 40 | ||||
-rw-r--r-- | devel/pkg-config/distinfo | 2 | ||||
-rw-r--r-- | devel/pkg-config/files/patch-Makefile.in | 11 | ||||
-rw-r--r-- | devel/pkg-config/files/patch-parse.c | 19 |
4 files changed, 0 insertions, 72 deletions
diff --git a/devel/pkg-config/Makefile b/devel/pkg-config/Makefile deleted file mode 100644 index e8fe57e0b..000000000 --- a/devel/pkg-config/Makefile +++ /dev/null @@ -1,40 +0,0 @@ -# New ports collection makefile for: pkgconfig -# Date created: 30 April 2001 -# Whom: Maxim Sobolev <sobomax@FreeBSD.org> -# -# $FreeBSD$ -# $MCom: ports/devel/pkg-config/Makefile,v 1.15 2012/01/16 18:15:49 ahze Exp $ -# - -PORTNAME= pkg-config -PORTVERSION= 0.26 -PORTREVISION= 1 -CATEGORIES= devel -MASTER_SITES= http://pkgconfig.freedesktop.org/releases/ -DIST_SUBDIR= gnome2 - -MAINTAINER= gnome@FreeBSD.org -COMMENT= A utility to retrieve information about installed libraries - -USE_CSTD= gnu89 -USE_GNOME= _glib20 -USE_GMAKE= yes -GNU_CONFIGURE= yes - -MAN1= pkg-config.1 - -.include <bsd.port.pre.mk> - -PC_PATH=${PREFIX}/libdata/pkgconfig -PC_PATH:=${PC_PATH}:${PREFIX}/lib/pkgconfig -.if ${LOCALBASE} != ${PREFIX} -PC_PATH:= ${PC_PATH}:${LOCALBASE}/libdata/pkgconfig -PC_PATH:= ${PC_PATH}:${LOCALBASE}/lib/pkgconfig -.endif - -CONFIGURE_ARGS= --with-pc-path="${PC_PATH}" - -CONFIGURE_ENV= GLIB_CFLAGS="-I${LOCALBASE}/include/glib-2.0" \ - GLIB_LIBS="-L${LOCALBASE}/lib -lglib-2.0 -lintl" - -.include <bsd.port.post.mk> diff --git a/devel/pkg-config/distinfo b/devel/pkg-config/distinfo deleted file mode 100644 index 95f8030c6..000000000 --- a/devel/pkg-config/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (gnome2/pkg-config-0.26.tar.gz) = 94c1936a797c930fb3e4e5a154165b6268caba22b32d24083dd4c492a533c8af -SIZE (gnome2/pkg-config-0.26.tar.gz) = 396399 diff --git a/devel/pkg-config/files/patch-Makefile.in b/devel/pkg-config/files/patch-Makefile.in deleted file mode 100644 index c100f5397..000000000 --- a/devel/pkg-config/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig 2010-05-28 11:55:55.000000000 -0400 -+++ Makefile.in 2010-07-24 14:52:26.000000000 -0400 -@@ -19,7 +19,7 @@ - VPATH = @srcdir@ - pkgdatadir = $(datadir)/@PACKAGE@ - pkgincludedir = $(includedir)/@PACKAGE@ --pkglibdir = $(libdir)/@PACKAGE@ -+pkglibdir = $(prefix)/libdata/@PACKAGE@ - pkglibexecdir = $(libexecdir)/@PACKAGE@ - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - install_sh_DATA = $(install_sh) -c -m 644 diff --git a/devel/pkg-config/files/patch-parse.c b/devel/pkg-config/files/patch-parse.c deleted file mode 100644 index 99a3ce964..000000000 --- a/devel/pkg-config/files/patch-parse.c +++ /dev/null @@ -1,19 +0,0 @@ ---- parse.c.orig Sun Oct 16 13:09:39 2005 -+++ parse.c Sat Sep 2 14:09:44 2006 -@@ -707,6 +707,16 @@ static void _do_parse_libs (Package *pkg - i++; - g_free(framework); - } -+ else if ((strcmp("-Wl,--rpath",p) == 0 || strcmp("-Wl,-rpath",p) == 0) && -+ i+1 < argc) -+ { -+ gchar *rpath = trim_string (argv[i+1]); -+ -+ pkg->other_libs = g_slist_prepend (pkg->other_libs, -+ g_strconcat(arg, " ", rpath, NULL)); -+ i++; -+ g_free(rpath); -+ } - else - { - if (*arg != '\0') |