Bug 182286 - [patch] devel/libpthread-stubs: misc fixes
Summary: [patch] devel/libpthread-stubs: misc fixes
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Ashish SHUKLA
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-09-21 21:00 UTC by Tijl Coosemans
Modified: 2013-10-19 22:30 UTC (History)
0 users

See Also:


Attachments
libpthread-stubs.patch (1.45 KB, patch)
2013-09-21 21:00 UTC, Tijl Coosemans
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Tijl Coosemans freebsd_committer freebsd_triage 2013-09-21 21:00:00 UTC
- Remove gmake dependency.  Ordinary make works just fine.
- Remove pkgconfig dependency.  The port only installs a .pc file.
- Replace gnomehack with pathfix.  This allows removing
  patch-configure-libs.
- Make patch-configure-objformat FreeBSD 10 compatible.
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-09-21 21:00:09 UTC
Responsible Changed
From-To: freebsd-ports-bugs->ashish

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-10-19 22:24:27 UTC
Author: tijl
Date: Sat Oct 19 21:24:20 2013
New Revision: 330936
URL: http://svnweb.freebsd.org/changeset/ports/330936

Log:
  - Remove gmake dependency. Ordinary make works just fine.
  - Remove pkgconfig dependency. The port only installs a .pc file.
  - Replace gnomehack with pathfix. This allows removing
    patch-configure-libs.
  - Make patch-configure-objformat FreeBSD 10 compatible.
  
  PR:		ports/182286
  Approved by:	maintainer timeout (4 weeks)

Deleted:
  head/devel/libpthread-stubs/files/patch-configure-libs
Modified:
  head/devel/libpthread-stubs/Makefile   (contents, props changed)
  head/devel/libpthread-stubs/files/patch-configure-objformat   (contents, props changed)

Modified: head/devel/libpthread-stubs/Makefile
==============================================================================
--- head/devel/libpthread-stubs/Makefile	Sat Oct 19 20:49:37 2013	(r330935)
+++ head/devel/libpthread-stubs/Makefile	Sat Oct 19 21:24:20 2013	(r330936)
@@ -3,15 +3,14 @@
 
 PORTNAME=	libpthread-stubs
 PORTVERSION=	0.3
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	devel
 MASTER_SITES=	http://xcb.freedesktop.org/dist/
 
 MAINTAINER=	ashish@FreeBSD.org
 COMMENT=	This library provides weak aliases for pthread functions
 
-USES=		gmake pkgconfig
-USE_GNOME=	gnomehack
+USES=		pathfix
 USE_BZIP2=	yes
 USE_LDCONFIG=	yes
 

Modified: head/devel/libpthread-stubs/files/patch-configure-objformat
==============================================================================
--- head/devel/libpthread-stubs/files/patch-configure-objformat	Sat Oct 19 20:49:37 2013	(r330935)
+++ head/devel/libpthread-stubs/files/patch-configure-objformat	Sat Oct 19 21:24:20 2013	(r330936)
@@ -13,7 +13,7 @@
 -    esac
 -  fi
 +  case $host_os in
-+   freebsd[123]*) objformat=aout ;;
++   freebsd[123].*) objformat=aout ;;
 +   *) objformat=elf ;;
 +  esac
    version_type=freebsd-$objformat
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Tijl Coosemans freebsd_committer freebsd_triage 2013-10-19 22:24:39 UTC
State Changed
From-To: open->closed

Committed in r330936.