Small patch for respecting PREFIX
Class Changed From-To: update->maintainer-update Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool)
Can you replace my MAKE_ARGS+= line with this new one: MAKE_ARGS+= PREFIX=${PREFIX} CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" This will permit to support CFLAGS and LDFLAGS. Thanks, On Sun, Dec 30, 2012 at 2:10 PM, <FreeBSD-gnats-submit@freebsd.org> wrote: > Thank you very much for your problem report. > It has the internal identification `ports/174829'. > The individual assigned to look at your > report is: freebsd-ports-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=174829 > >>Category: ports >>Responsible: freebsd-ports-bugs >>Synopsis: devel/deforaos-libsystem patch for respecting PREFIX >>Arrival-Date: Sun Dec 30 13:10:00 UTC 2012
On Sun, Dec 30, 2012 at 4:16 PM, Olivier Cochard-Labb=E9 <olivier@cochard.me> wrote: > Can you replace my MAKE_ARGS+=3D line with this new one: > > MAKE_ARGS+=3D PREFIX=3D${PREFIX} CFLAGS=3D"${CFLAGS}" LDFLAGS=3D"${LDF= LAGS}" > > This will permit to support CFLAGS and LDFLAGS. Oops, forgot my last mail: Kept my original patch without adding CFLAGS and LDFLAGS to MAKE_ARGS, it seems I meet some problem if I add CFLAGS and LDFLAGS. sorry for the noise. Olivier
Responsible Changed From-To: freebsd-ports-bugs->rm I will take it.
Author: rm Date: Thu Jan 3 15:43:31 2013 New Revision: 309890 URL: http://svnweb.freebsd.org/changeset/ports/309890 Log: - make it PREFIX-safe - bump PORTREVISION PR: 174829 Submitted by: olivier@cochard.me (maintainer) Modified: head/devel/deforaos-libsystem/Makefile Modified: head/devel/deforaos-libsystem/Makefile ============================================================================== --- head/devel/deforaos-libsystem/Makefile Thu Jan 3 15:41:53 2013 (r309889) +++ head/devel/deforaos-libsystem/Makefile Thu Jan 3 15:43:31 2013 (r309890) @@ -3,6 +3,7 @@ PORTNAME= libsystem PORTVERSION= 0.1.6 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://www.defora.org/os/download/download/3527/ DISTNAME= libSystem-${PORTVERSION} @@ -15,6 +16,7 @@ LICENSE= GPLv3 USE_LDCONFIG= yes USE_PKGCONFIG= build +MAKE_ARGS+= PREFIX=${PREFIX} post-patch: ${REINPLACE_CMD} -e 's|/lib/|/libdata/|g' \ _______________________________________________ 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, thank you!