From owner-freebsd-ports@freebsd.org Sun Jan 31 06:27:02 2016 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B6691A730CE for ; Sun, 31 Jan 2016 06:27:02 +0000 (UTC) (envelope-from jungleboogie0@gmail.com) Received: from mail-vk0-x22e.google.com (mail-vk0-x22e.google.com [IPv6:2607:f8b0:400c:c05::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 75058C80 for ; Sun, 31 Jan 2016 06:27:02 +0000 (UTC) (envelope-from jungleboogie0@gmail.com) Received: by mail-vk0-x22e.google.com with SMTP id e185so61650916vkb.1 for ; Sat, 30 Jan 2016 22:27:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:cc:content-type; bh=K1Der3tDf2+7T3sTK1HIHeg9KJ8Uk5ww2txkiMWzt/0=; b=rU+az8KsMz9x4nSFZJkHw4XSCj29zXAz8kCC0MgGKAUp+V5DerL6sSESpicUERZNX7 SE6opIIWqsZvE/FJNBna8NOXiTYrmhIpDMEzF2odgjGsHFVl0ELkub5Hj/KoyP8dRePr XrNcxxrb+L8mGIHBXSLB5/4zLwVGjAB1QU9rjPPksH8rEw+ffgav0mhwEXDmCtaCYd3E 7UykZJB4rbEkdBJW9jG2S+sTIB1kvCE7KlvcNGd8TwZG4GsSbveSw11jhT51uUoXKfBd 9A/UpGjvA6yih84L8AN1Zoehe3s+vdqjVJUo/1EIm/D2bhNVfp51+6p5eXWFt6yyxgeE gnvQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:date:message-id:subject:from:to:cc :content-type; bh=K1Der3tDf2+7T3sTK1HIHeg9KJ8Uk5ww2txkiMWzt/0=; b=JTk5GQrKgzogjQ9b/d0cNsSP3vcTJFTpA74qL+XnA/eXncBlLeed+rqTEE0Dzi9ZAz nSpJQxc4TyGzThi0faiiHFlcPI1BkyC6YDZK8h9GsOFBTf15cfnnpLrCO4XlhAXj4fG9 VG9HgPw4bHMnqiq167Pi3iZq2N4vPQKZknSvokewV5aHF12dv1I/MRC6ZQ1ufPaHuL50 13jY49GCAESj4FLCxKBmTHR6OKPhCJT1voAt8btawAVwz9y8DTaDm1bAId/Z1+BAaHHt Z9FOaEk/Ev4h1hCmfLj/Ts7ArMUE391tWGyyB0E0FfILx1ImYPPzvxepyGV9NjKh9hkf 43gA== X-Gm-Message-State: AG10YOSb9kaH6UdQIm2fXPz7RXw1qFCa1SMSXRSG/YrplKnTJshrzZdA+u7N2Lc/Gs9kanK7Zms+FaliFBLn7g== MIME-Version: 1.0 X-Received: by 10.31.172.135 with SMTP id v129mr10877223vke.154.1454221621191; Sat, 30 Jan 2016 22:27:01 -0800 (PST) Received: by 10.31.56.142 with HTTP; Sat, 30 Jan 2016 22:27:01 -0800 (PST) Date: Sat, 30 Jan 2016 22:27:01 -0800 Message-ID: Subject: New port assistance for mlr From: jungle Boogie To: freebsd-ports@freebsd.org Cc: jungle Boogie Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 06:27:02 -0000 Hello All, I'm attempting to port this to FreeBSD ports/packages: https://github.com/johnkerl/miller I've been building it from source for months and worked with the developer several times to improve things for FreeBSD, so now that he's got it stable, I'd like to bring it to FreeBSD. My question regards how I get my Makefile to show what's actually needed to build the package. This is what I do to build from src: cd miller/c make -f Makefile.no-autoconfig CC=clang and then install to /usr/loca/bin/ with: sudo Makefile.no-autoconfig CC=clang install My current Makefile: PORTNAME= miller PORTVERSION= 3.3.2 DISTVERSIONPREFIX= v CATEGORIES= textproc MAINTAINER= jungleboogie0+mlr@gmail.com COMMENT= Like sed, awk, cut, join and sort for name-indexed data such as CSV LICENSE_FILE= ${PORTNAME}-${PORTVERSION}/LICENSE.txt USE_GITHUB= yes GH_ACCOUNT= johnkerl WORKSRC= ${PORTNAME}-${PORTVERSION} WRKSRC_SUBDIR= c .include fail: # make ===> Building for miller-3.3.2 make[1]: cannot open Makefile. make[1]: stopped in /usr/ports/distfiles/work/miller-3.3.2/c ===> Compilation failed unexpectedly. Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to the maintainer. *** Error code 1 Stop. make: stopped in /usr/ports/distfiles If this is covered in the handbook, I kindly ask that you link me to it so I can learn from it. Thanks! -- ------- inum: 883510009027723 sip: jungleboogie@sip2sip.info xmpp: jungle-boogie@jit.si