1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-24 21:01:20 +00:00

Update to 0.13.0.

This commit is contained in:
Joe Marcus Clarke 2002-10-05 16:22:23 +00:00
parent a4167bdece
commit c296eea387
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=67327
6 changed files with 6 additions and 92 deletions

View File

@ -6,10 +6,10 @@
#
PORTNAME= pkgconfig
PORTVERSION= 0.12.0
PORTVERSION= 0.13.0
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/pkgconfig/0.12
MASTER_SITE_SUBDIR= sources/pkgconfig/0.13
DIST_SUBDIR= gnome2
MAINTAINER= gnome@FreeBSD.org

View File

@ -1 +1 @@
MD5 (gnome2/pkgconfig-0.12.0.tar.bz2) = f539fb0988eae2002bfad8dfe78cd3f3
MD5 (gnome2/pkgconfig-0.13.0.tar.bz2) = 3883647db644bf791d9ff31c544cf53d

View File

@ -29,46 +29,3 @@
+ scan_dir (LPKGLIBDIR, (void *)1);
}
}
@@ -901,6 +904,13 @@
while (tmp != NULL)
{
Package *pkg = tmp->data;
+ GSList *reqs = pkg->requires;
+
+ if (reqs)
+ {
+ g_string_append (str, packages_get_other_libs(reqs));
+ g_string_append (str, " ");
+ }
if (pkg->other_libs)
{
@@ -924,10 +934,13 @@
char *L_libs;
char *other_libs;
GString *str;
+ GSList *tmp;
char *retval;
str = g_string_new ("");
+ tmp = pkgs;
+
other_libs = packages_get_other_libs (pkgs);
L_libs = packages_get_L_libs (pkgs);
l_libs = packages_get_l_libs (pkgs);
@@ -986,6 +999,13 @@
while (tmp != NULL)
{
Package *pkg = tmp->data;
+ GSList *reqs = pkg->requires;
+
+ if (reqs)
+ {
+ g_string_append (str, packages_get_other_cflags(reqs));
+ g_string_append (str, " ");
+ }
if (pkg->other_cflags)
{

View File

@ -6,10 +6,10 @@
#
PORTNAME= pkgconfig
PORTVERSION= 0.12.0
PORTVERSION= 0.13.0
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/pkgconfig/0.12
MASTER_SITE_SUBDIR= sources/pkgconfig/0.13
DIST_SUBDIR= gnome2
MAINTAINER= gnome@FreeBSD.org

View File

@ -1 +1 @@
MD5 (gnome2/pkgconfig-0.12.0.tar.bz2) = f539fb0988eae2002bfad8dfe78cd3f3
MD5 (gnome2/pkgconfig-0.13.0.tar.bz2) = 3883647db644bf791d9ff31c544cf53d

View File

@ -29,46 +29,3 @@
+ scan_dir (LPKGLIBDIR, (void *)1);
}
}
@@ -901,6 +904,13 @@
while (tmp != NULL)
{
Package *pkg = tmp->data;
+ GSList *reqs = pkg->requires;
+
+ if (reqs)
+ {
+ g_string_append (str, packages_get_other_libs(reqs));
+ g_string_append (str, " ");
+ }
if (pkg->other_libs)
{
@@ -924,10 +934,13 @@
char *L_libs;
char *other_libs;
GString *str;
+ GSList *tmp;
char *retval;
str = g_string_new ("");
+ tmp = pkgs;
+
other_libs = packages_get_other_libs (pkgs);
L_libs = packages_get_L_libs (pkgs);
l_libs = packages_get_l_libs (pkgs);
@@ -986,6 +999,13 @@
while (tmp != NULL)
{
Package *pkg = tmp->data;
+ GSList *reqs = pkg->requires;
+
+ if (reqs)
+ {
+ g_string_append (str, packages_get_other_cflags(reqs));
+ g_string_append (str, " ");
+ }
if (pkg->other_cflags)
{