diff options
author | minskim <minskim@pkgsrc.org> | 2004-06-16 16:45:21 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2004-06-16 16:45:21 +0000 |
commit | 221fd9472cc2e51e55744f9e9644d97e561be06d (patch) | |
tree | 550c834b7d86fe63a67333651b0219866342bb28 /fonts/mozilla-fonts | |
parent | 8a010757eaef922ad8e6ae472d24a3d636f6a006 (diff) | |
download | pkgsrc-221fd9472cc2e51e55744f9e9644d97e561be06d.tar.gz |
Use BSD_INSTALL_* to honor *OWN and *GRP.
Diffstat (limited to 'fonts/mozilla-fonts')
-rw-r--r-- | fonts/mozilla-fonts/distinfo | 4 | ||||
-rw-r--r-- | fonts/mozilla-fonts/patches/patch-aa | 26 |
2 files changed, 16 insertions, 14 deletions
diff --git a/fonts/mozilla-fonts/distinfo b/fonts/mozilla-fonts/distinfo index 70758546d42..62296a4bff7 100644 --- a/fonts/mozilla-fonts/distinfo +++ b/fonts/mozilla-fonts/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.1.1.1 2002/04/09 13:17:24 wiz Exp $ +$NetBSD: distinfo,v 1.2 2004/06/16 16:45:21 minskim Exp $ SHA1 (mozilla-fonts-1.0.tar.gz) = 78bdf7d984f4d3fb63f1ab2ae6313be5adf297a0 Size (mozilla-fonts-1.0.tar.gz) = 646850 bytes -SHA1 (patch-aa) = 2d61b38289eae664e03408e15cff952405a8e2de +SHA1 (patch-aa) = b31f0e75bf4326f0aaaa66ffb29bf866ccd9e015 diff --git a/fonts/mozilla-fonts/patches/patch-aa b/fonts/mozilla-fonts/patches/patch-aa index d362eb74975..7f73a9088ec 100644 --- a/fonts/mozilla-fonts/patches/patch-aa +++ b/fonts/mozilla-fonts/patches/patch-aa @@ -1,30 +1,32 @@ -$NetBSD: patch-aa,v 1.1.1.1 2002/04/09 13:17:24 wiz Exp $ +$NetBSD: patch-aa,v 1.2 2004/06/16 16:45:21 minskim Exp $ ---- Makefile.orig Sun Sep 24 10:57:57 2000 +--- Makefile.orig 2000-09-23 21:57:57.000000000 -0500 +++ Makefile -@@ -1,8 +1,8 @@ +@@ -1,6 +1,6 @@ # Makefile for mozilla-fonts -DESTDIR = /usr/local/lib/X11/fonts/Mozilla +DESTDIR = $(PREFIX)/lib/X11/fonts/Mozilla --INSTALL = install -+INSTALL = install -c -o root -g wheel + INSTALL = install - # -------- No user-serviceable parts below -------- - -@@ -111,10 +111,13 @@ +@@ -111,12 +111,15 @@ all: $(PCFFILES) bdftopcf $< -o $@ install: $(PCFFILES) - mkdir -p $(DESTDIR) -+ $(INSTALL) -d $(DESTDIR) ++ $(BSD_INSTALL_DATA_DIR) $(DESTDIR) @for font in $(PCFFILES) ; do \ - echo " $(INSTALL) -m 644 $$font $(DESTDIR)/$$font" ; \ - $(INSTALL) -m 644 $$font $(DESTDIR)/$$font || exit 1 ; \ +- echo " $(INSTALL) -m 644 $$font $(DESTDIR)/$$font" ; \ +- $(INSTALL) -m 644 $$font $(DESTDIR)/$$font || exit 1 ; \ ++ echo " $(BSD_INSTALL_DATA) $$font $(DESTDIR)/$$font" ; \ ++ $(BSD_INSTALL_DATA) -m 644 $$font $(DESTDIR)/$$font || exit 1 ; \ + rm -f $(DESTDIR)/$$font.* ; \ + echo " Compressing $(DESTDIR)/$$font" ; \ + gzip $(DESTDIR)/$$font ; \ done - $(INSTALL) -m 644 fonts.alias $(DESTDIR)/fonts.alias +- $(INSTALL) -m 644 fonts.alias $(DESTDIR)/fonts.alias ++ $(BSD_INSTALL_DATA) fonts.alias $(DESTDIR)/fonts.alias cd $(DESTDIR) && mkfontdir + + clean: |