bdde63d048
* gcc-2.95/3.3/3.4/4.0/4.1 can compile skyeye * add amd64 support, update autotest, * in 64bit system, long=64 bit int=32bit, long long =64 bit, long int=64bit; * in 32bit system, long = 32 bit, int=32bit, long long =64 bit, long int=32bit * so I do: long ---> int * Changed files: *.[ch] which has long --->int , long int ---> int Makefile utils/tools/auto_test/daily_test.sh * added files: Makefile_gcc-3.3_with_DBCT_X86_32 2. Add to Makefile ONLY_FOR_ARCHS= i386 amd64 PR: 102558 [1] Submitted by: RuanWei <iamayan at gmail.com> (maintainer) [1] Approved by: netchild (mentor, implicit)
33 lines
856 B
Makefile
33 lines
856 B
Makefile
# Ports collection makefile for: skyeye
|
|
# Date created: Mon July 18, 2005
|
|
# Whom: Ruan Wei (iamayan@gmail.com)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= skyeye
|
|
DISTVERSION= 1.2-RC8
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= http://download.gro.clinux.org/skyeye/
|
|
|
|
MAINTAINER= iamayan@gmail.com
|
|
COMMENT= An environment simulates typical ARM-base embedded computer systems
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libiberty.a:${PORTSDIR}/devel/gnulibiberty \
|
|
${LOCALBASE}/lib/libbfd.a:${PORTSDIR}/devel/libbfd
|
|
RUN_DEPENDS= ${LOCALBASE}/lib/libiberty.a:${PORTSDIR}/devel/gnulibiberty \
|
|
${LOCALBASE}/lib/libbfd.a:${PORTSDIR}/devel/libbfd
|
|
|
|
USE_GMAKE= yes
|
|
USE_BZIP2= yes
|
|
USE_GNOME= gtk20
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-v1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/binary/skyeye ${PREFIX}/bin
|
|
|
|
.include <bsd.port.post.mk>
|