View | Details | Raw Unified | Return to bug 178137
Collapse All | Expand All

(-)MOVED (+1 lines)
Lines 4168-4170 Link Here
4168
net-mgmt/zabbix-frontend|net-mgmt/zabbix2-frontend|2013-03-15|Has expired: no longer supported by upstream
4168
net-mgmt/zabbix-frontend|net-mgmt/zabbix2-frontend|2013-03-15|Has expired: no longer supported by upstream
4169
net-mgmt/zabbix-proxy|net-mgmt/zabbix2-proxy|2013-03-15|Has expired: no longer supported by upstream
4169
net-mgmt/zabbix-proxy|net-mgmt/zabbix2-proxy|2013-03-15|Has expired: no longer supported by upstream
4170
net-mgmt/zabbix-server|net-mgmt/zabbix2-server|2013-03-15|Has expired: no longer supported by upstream
4170
net-mgmt/zabbix-server|net-mgmt/zabbix2-server|2013-03-15|Has expired: no longer supported by upstream
4171
devel/u-boot|devel/uboot-mkimage|2013-03-17|Port doesn't build main target of distribution
(-)devel/Makefile (-1 / +1 lines)
Lines 4304-4311 Link Here
4304
    SUBDIR += trac-bitten
4304
    SUBDIR += trac-bitten
4305
    SUBDIR += trio
4305
    SUBDIR += trio
4306
    SUBDIR += truc
4306
    SUBDIR += truc
4307
    SUBDIR += u-boot
4308
    SUBDIR += uatraits
4307
    SUBDIR += uatraits
4308
    SUBDIR += uboot-mkimage 
4309
    SUBDIR += uclmmbase
4309
    SUBDIR += uclmmbase
4310
    SUBDIR += ucommon
4310
    SUBDIR += ucommon
4311
    SUBDIR += ucpp
4311
    SUBDIR += ucpp
(-)devel/uboot-mkimage/Makefile (-13 / +9 lines)
Lines 1-30 Link Here
1
# New ports collection makefile for:   u-boot-mkimage
1
# Created by: Marius Nuennerich <mn@bsdgroup.de>
2
# Date created:        18 September 2007
3
# Whom:                Marius Nuennerich <mn@bsdgroup.de>
4
#
5
# $FreeBSD$
2
# $FreeBSD$
6
#
7
3
8
PORTNAME=	u-boot
4
PORTNAME=	uboot
9
PORTVERSION=	1.2.0
5
DISTVERSION=	2010.12
10
CATEGORIES=	devel
6
CATEGORIES=	devel
11
MASTER_SITES=	ftp://ftp.denx.de/pub/u-boot/ \
7
MASTER_SITES=	ftp://ftp.denx.de/pub/u-boot/ \
12
		http://people.bsdgroup.de/~as/freebsd/distfiles/
8
		http://people.bsdgroup.de/~as/freebsd/distfiles/
13
PKGNAMESUFFIX=	-mkimage
9
PKGNAMESUFFIX=	-mkimage
10
DISTNAME=	u-boot-${PORTVERSION}
14
11
15
MAINTAINER=	mn@bsdgroup.de
12
MAINTAINER=	ray@FreeBSD.org
16
COMMENT=	The mkimage utility of the u-boot bootloader
13
COMMENT=	The mkimage utility of the u-boot bootloader
17
14
18
USE_BZIP2=	yes
15
USE_BZIP2=	yes
16
BUILD_WRKSRC=	${WRKSRC}/tools
17
MAKEFILE=	BSDmakefile
19
18
20
PLIST_FILES=	bin/mkimage
19
PLIST_FILES=	bin/mkimage
21
20
22
do-patch:
21
post-extract:
23
	@${CP} ${PATCHDIR}/BSDmakefile ${WRKSRC}/tools
22
	${CP} ${PATCHDIR}/BSDmakefile ${WRKSRC}/tools
24
23
25
do-build:
26
	@cd ${WRKSRC}/tools && make
27
28
do-install:
24
do-install:
29
	${INSTALL_PROGRAM} ${WRKSRC}/tools/mkimage ${PREFIX}/bin
25
	${INSTALL_PROGRAM} ${WRKSRC}/tools/mkimage ${PREFIX}/bin
30
26
(-)devel/uboot-mkimage/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (u-boot-1.2.0.tar.bz2) = 62192ddf019c5d24f6538b33c9e69b6e5792bf5b0f464c0149061e2f0871108b
1
SHA256 (u-boot-2010.12.tar.bz2) = 1705772db7a18635693676abb8818542167cb131921c456a1edd0ed47e6b77fe
2
SIZE (u-boot-1.2.0.tar.bz2) = 6929112
2
SIZE (u-boot-2010.12.tar.bz2) = 8238700
(-)devel/uboot-mkimage/files/BSDmakefile (-3 / +20 lines)
Lines 1-11 Link Here
1
CFLAGS+=	-I../include -DUSE_HOSTCC
1
CFLAGS+=	-I. -I../include -DUSE_HOSTCC
2
2
3
all: mkimage
3
all: mkimage
4
4
5
mkimage: mkimage.o crc32.o
5
mkimage: mkimage.o crc32.o default_image.o fit_image.o image.o imximage.o \
6
	kwbimage.o md5.o os_support.o sha1.o fdt.o fdt_ro.o fdt_rw.o \
7
	fdt_strerror.o fdt_wip.o
6
	$(CC) $(CFLAGS) -o $(.TARGET) $(.ALLSRC)
8
	$(CC) $(CFLAGS) -o $(.TARGET) $(.ALLSRC)
7
9
8
crc32.o: ../lib_generic/crc32.c ../include/zlib.h
10
crc32.o: ../lib/crc32.c ../include/u-boot/zlib.h
11
default_image.o:	default_image.c
12
fit_image.o:		fit_image.c
13
image.o:		../common/image.c
14
imximage.o:		imximage.c
15
kwbimage.o:		kwbimage.c
16
md5.o:			../lib/md5.c
17
os_support.o:		os_support.c
18
sha1.o:			../lib/sha1.c
9
19
20
fdt.o:			../lib/libfdt/fdt.c
21
fdt_ro.o:		../lib/libfdt/fdt_ro.c
22
fdt_rw.o:		../lib/libfdt/fdt_rw.c
23
fdt_strerror.o:		../lib/libfdt/fdt_strerror.c
24
fdt_wip.o:		../lib/libfdt/fdt_wip.c
25
26
10
clean:
27
clean:
11
	rm -f mkimage mkimage.o crc32.o
28
	rm -f mkimage mkimage.o crc32.o
(-)devel/uboot-mkimage/files/patch-include__compiler.h (+11 lines)
Line 0 Link Here
1
--- ./include/compiler.h.orig	2010-12-22 21:22:14.000000000 +0200
2
+++ ./include/compiler.h	2011-01-13 13:50:35.000000000 +0200
3
@@ -44,7 +44,7 @@
4
 #ifdef __linux__
5
 # include <endian.h>
6
 # include <byteswap.h>
7
-#elif defined(__MACH__)
8
+#elif defined(__MACH__) || defined(__FreeBSD__)
9
 # include <machine/endian.h>
10
 typedef unsigned long ulong;
11
 #endif

Return to bug 178137