From owner-freebsd-ports@FreeBSD.ORG Sun Jan 4 14:49:41 2015 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4EFB3E01 for ; Sun, 4 Jan 2015 14:49:41 +0000 (UTC) Received: from mail-wi0-x22a.google.com (mail-wi0-x22a.google.com [IPv6:2a00:1450:400c:c05::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D719D644EC for ; Sun, 4 Jan 2015 14:49:40 +0000 (UTC) Received: by mail-wi0-f170.google.com with SMTP id bs8so2762200wib.5 for ; Sun, 04 Jan 2015 06:49:39 -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:content-type; bh=1d1SBjwn859PQmyKFwtDQJBcDx4R9JJmXC71HbHlkdo=; b=gmUS6z38wXyvtXuZNFAQ40YOdQKRjVRR1YSA9vxP64FtoV7D5SWgJEWOkrcGgRCafe WDMeylZ3oPeckoblX06ojnO0Zgl4WcW3Y2RrEgyivX8p1rG/x8lI+T2ZXliTGskeqQHS Tay48Jefk7EPPWVeb+0dMawFHrlXyK7/qRXktWHbQSbaLhl2ssi0fDqCYE4wlhDXetCs 7z0ZMplFvx5RwCaWiyxZ0wv9V3ZhahQK8eUpiMcoPO65IUxWg23h75HBLbD3zKmQgzGK ep2ab7uwgVuzFCtyCXc2i49/8lSoFCIzfTpgxTLWTTNC+oAIjgq7K+XCeqPjtKgTkZBq 6dwA== MIME-Version: 1.0 X-Received: by 10.181.12.17 with SMTP id em17mr16375690wid.45.1420382979211; Sun, 04 Jan 2015 06:49:39 -0800 (PST) Received: by 10.194.241.132 with HTTP; Sun, 4 Jan 2015 06:49:39 -0800 (PST) Date: Sun, 4 Jan 2015 22:49:39 +0800 Message-ID: Subject: Combining GitHub and regular MASTER_SITES for multiple DISTFILES From: Ben Woods To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2015 14:49:41 -0000 I am trying to create a new port, where the main source code should be retrieved from GitHub, and a secondary piece of source code should be retrieved from an FTP site. The USE_GITHUB port magic does not work for the primary source code if the MASTER_SITES and DISTFILES variables are also specified in the Makefile for the secondary source code. The result is that only the secondary code is downloaded and extracted. Using += for the MASTER_SITES and DISTFILES assignment does not fix the issue. Is there a way that these can be used together for this propose? Regards, Ben -- -- From: Benjamin Woods woodsb02@gmail.com