Changes 1.3.0:
Improvements and bug-fixes
This commit is contained in:
parent
ef23b0f252
commit
dca64144eb
4 changed files with 32 additions and 33 deletions
|
@ -1,8 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.5 2003/07/17 21:30:54 grant Exp $
|
||||
# $NetBSD: Makefile,v 1.6 2003/12/05 09:22:26 adam Exp $
|
||||
#
|
||||
|
||||
DISTNAME= gnustep-objc-1.2.3
|
||||
PKGREVISION= 1
|
||||
DISTNAME= gnustep-objc-1.3.0
|
||||
CATEGORIES= devel gnustep
|
||||
MASTER_SITES= ftp://ftp.gnustep.org/pub/gnustep/libs/
|
||||
|
||||
|
@ -10,11 +9,10 @@ MAINTAINER= rh@NetBSD.org
|
|||
HOMEPAGE= http://www.gnustep.org/
|
||||
COMMENT= Objective-C runtime
|
||||
|
||||
NO_CONFIGURE= YES
|
||||
|
||||
USE_BUILDLINK2= YES
|
||||
USE_GMAKE= YES
|
||||
MAKEFILE= GNUmakefile
|
||||
USE_BUILDLINK2= YES
|
||||
USE_GMAKE= YES
|
||||
MAKEFILE= GNUmakefile
|
||||
NO_CONFIGURE= YES
|
||||
|
||||
.include "../../devel/gnustep-make/buildlink2.mk"
|
||||
.include "../../mk/pthread.buildlink2.mk"
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2002/09/27 10:44:47 rh Exp $
|
||||
share/GNUstep/System/Headers/objc/NXConstStr.h
|
||||
share/GNUstep/System/Headers/objc/Object.h
|
||||
share/GNUstep/System/Headers/objc/Protocol.h
|
||||
share/GNUstep/System/Headers/objc/encoding.h
|
||||
share/GNUstep/System/Headers/objc/hash.h
|
||||
share/GNUstep/System/Headers/objc/objc-api.h
|
||||
share/GNUstep/System/Headers/objc/objc-decls.h
|
||||
share/GNUstep/System/Headers/objc/objc-list.h
|
||||
share/GNUstep/System/Headers/objc/objc.h
|
||||
share/GNUstep/System/Headers/objc/sarray.h
|
||||
share/GNUstep/System/Headers/objc/thr.h
|
||||
share/GNUstep/System/Headers/objc/typedstream.h
|
||||
share/GNUstep/System/Libraries/${GNUSTEP_HOST_CPU}/${LOWER_OPSYS}${APPEND_ELF}/libobjc.so
|
||||
share/GNUstep/System/Libraries/${GNUSTEP_HOST_CPU}/${LOWER_OPSYS}${APPEND_ELF}/libobjc.so.${PKGVERSION}
|
||||
@dirrm share/GNUstep/System/Headers/objc
|
||||
@comment $NetBSD: PLIST,v 1.2 2003/12/05 09:22:26 adam Exp $
|
||||
share/GNUstep/System/Library/Headers/objc/NXConstStr.h
|
||||
share/GNUstep/System/Library/Headers/objc/Object.h
|
||||
share/GNUstep/System/Library/Headers/objc/Protocol.h
|
||||
share/GNUstep/System/Library/Headers/objc/encoding.h
|
||||
share/GNUstep/System/Library/Headers/objc/hash.h
|
||||
share/GNUstep/System/Library/Headers/objc/objc-api.h
|
||||
share/GNUstep/System/Library/Headers/objc/objc-decls.h
|
||||
share/GNUstep/System/Library/Headers/objc/objc-list.h
|
||||
share/GNUstep/System/Library/Headers/objc/objc.h
|
||||
share/GNUstep/System/Library/Headers/objc/sarray.h
|
||||
share/GNUstep/System/Library/Headers/objc/thr.h
|
||||
share/GNUstep/System/Library/Headers/objc/typedstream.h
|
||||
share/GNUstep/System/Library/Libraries/libobjc.so
|
||||
share/GNUstep/System/Library/Libraries/libobjc.so.${PKGVERSION}
|
||||
@dirrm share/GNUstep/System/Library/Headers/objc
|
||||
|
|
|
@ -1,19 +1,20 @@
|
|||
# $NetBSD: buildlink2.mk,v 1.4 2003/05/02 11:54:29 wiz Exp $
|
||||
# $NetBSD: buildlink2.mk,v 1.5 2003/12/05 09:22:26 adam Exp $
|
||||
#
|
||||
|
||||
.if !defined(GNUSTEP_OBJC_BUILDLINK2_MK)
|
||||
GNUSTEP_OBJC_BUILDLINK2_MK= # defined
|
||||
|
||||
BUILDLINK_PACKAGES+= gnustep-objc
|
||||
BUILDLINK_DEPENDS.gnustep-objc?= gnustep-objc>=1.2.3nb1
|
||||
BUILDLINK_PKGSRCDIR.gnustep-objc?= ../../devel/gnustep-objc
|
||||
BUILDLINK_DEPENDS.gnustep-objc?= gnustep-objc>=1.3.0
|
||||
BUILDLINK_PKGSRCDIR.gnustep-objc?= ../../devel/gnustep-objc
|
||||
|
||||
EVAL_PREFIX+= BUILDLINK_PREFIX.gnustep-objc=gnustep-objc
|
||||
BUILDLINK_PREFIX.gnustep-objc_DEFAULT= ${LOCALBASE}
|
||||
BUILDLINK_FILES.gnustep-objc= share/GNUstep/System/Headers/objc/*
|
||||
BUILDLINK_FILES.gnustep-objc+= share/GNUstep/System/Libraries/${GNUSTEP_HOST_CPU}/${LOWER_OPSYS}${APPEND_ELF}/*
|
||||
BUILDLINK_FILES.gnustep-objc= share/GNUstep/System/Library/Headers/objc/*
|
||||
BUILDLINK_FILES.gnustep-objc+= share/GNUstep/System/Library/Libraries/*
|
||||
|
||||
.include "../../devel/gnustep-make/buildlink2.mk"
|
||||
#.include "../../devel/gnustep-make/buildlink2.mk"
|
||||
.include "../gnustep-make/buildlink2.mk"
|
||||
|
||||
BUILDLINK_TARGETS+= gnustep-objc-buildlink
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.3 2003/04/01 08:31:37 rh Exp $
|
||||
$NetBSD: distinfo,v 1.4 2003/12/05 09:22:26 adam Exp $
|
||||
|
||||
SHA1 (gnustep-objc-1.2.3.tar.gz) = 317b1a14d387d0e5a65df6485cc5f8dcc5e0e84a
|
||||
Size (gnustep-objc-1.2.3.tar.gz) = 134417 bytes
|
||||
SHA1 (gnustep-objc-1.3.0.tar.gz) = 9c4002d52f1c9e1dd9238f25f1391be47c2bdefd
|
||||
Size (gnustep-objc-1.3.0.tar.gz) = 135408 bytes
|
||||
SHA1 (patch-aa) = ef2ef0e1b015d4a5a97b099628153e9fbb16b0fb
|
||||
|
|
Loading…
Reference in a new issue