| Summary: | [patch] devel/libpthread-stubs: misc fixes | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Ports & Packages | Reporter: | Tijl Coosemans <tijl> | ||||
| Component: | Individual Port(s) | Assignee: | Ashish SHUKLA <ashish> | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Only Me | ||||||
| Priority: | Normal | ||||||
| Version: | Latest | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
|
Description
Tijl Coosemans
2013-09-21 21:00:00 UTC
Responsible Changed From-To: freebsd-ports-bugs->ashish Over to maintainer (via the GNATS Auto Assign Tool) 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" State Changed From-To: open->closed Committed in r330936. |