summaryrefslogtreecommitdiff
path: root/cross/avr-libc
diff options
context:
space:
mode:
authorrillig <rillig>2005-12-05 20:49:47 +0000
committerrillig <rillig>2005-12-05 20:49:47 +0000
commit472dafdd2e1560bc21a20b89efd58a911dc44409 (patch)
treedac5b1dd14794d86b061d26b9503adb2552ed3f8 /cross/avr-libc
parent55a30558d8942bf85417fab3ed26bec7a7c3aae6 (diff)
downloadpkgsrc-472dafdd2e1560bc21a20b89efd58a911dc44409.tar.gz
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Diffstat (limited to 'cross/avr-libc')
-rw-r--r--cross/avr-libc/Makefile13
1 files changed, 6 insertions, 7 deletions
diff --git a/cross/avr-libc/Makefile b/cross/avr-libc/Makefile
index 654b31c5189..ccd262b62d3 100644
--- a/cross/avr-libc/Makefile
+++ b/cross/avr-libc/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2005/08/15 08:45:54 wennmach Exp $
+# $NetBSD: Makefile,v 1.7 2005/12/05 20:49:56 rillig Exp $
DISTNAME= avr-libc-1.2.5
CATEGORIES= cross
@@ -12,7 +12,6 @@ COMMENT= C and math library for Atmel AVR 8-bit microcontrollers
BUILD_DEPENDS+= avr-binutils-*:../../cross/avr-binutils
BUILD_DEPENDS+= avr-gcc-*:../../cross/avr-gcc
-BUILD_DEPENDS+= gmake-*:../../devel/gmake
BUILD_DEPENDS+= doxygen-*:../../devel/doxygen
BUILD_DEPENDS+= transfig-*:../../print/transfig
BUILD_DEPENDS+= netpbm-*:../../graphics/netpbm
@@ -21,7 +20,7 @@ USE_BZIP2= yes
USE_TOOLS+= gmake
HAS_CONFIGURE= yes
CONFIGURE_ENV+= CC=${LOCALBASE}/bin/avr-gcc
-CONFIGURE_ENV+= PREFIX=${PREFIX}
+CONFIGURE_ENV+= PREFIX=${PREFIX:Q}
CONFIGURE_ARGS+= --enable-doc
CONFIGURE_ARGS+= --disable-versioned-doc
# avr-libc's method to build the man pages seems to be broken
@@ -34,10 +33,10 @@ do-build:
do-install:
(cd ${WRKSRC}; ./domake MAKE=${GMAKE} install)
- ${MKDIR} ${PREFIX}/share/doc/avr-libc
- ${MKDIR} ${PREFIX}/share/doc/avr-libc/examples
- ${MKDIR} ${PREFIX}/share/doc/avr-libc/examples/demo
- ${MKDIR} ${PREFIX}/share/doc/avr-libc/examples/twitest
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/avr-libc
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/avr-libc/examples
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/avr-libc/examples/demo
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/avr-libc/examples/twitest
${INSTALL_DATA} \
${WRKSRC}/LICENSE \
${WRKSRC}/AUTHORS \