diff options
author | joerg <joerg@pkgsrc.org> | 2010-02-03 21:55:04 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2010-02-03 21:55:04 +0000 |
commit | 9c7df62f22b5829b0c8ff8ff72b1bea88e2121fb (patch) | |
tree | ab96d5ed1cdafe9a685f47afcd1012b83d7c782b /graphics/qvplay | |
parent | f80a6354069f6527915a8d03424e8c6cf88e8862 (diff) | |
download | pkgsrc-9c7df62f22b5829b0c8ff8ff72b1bea88e2121fb.tar.gz |
DESTDIR support
Diffstat (limited to 'graphics/qvplay')
-rw-r--r-- | graphics/qvplay/Makefile | 6 | ||||
-rw-r--r-- | graphics/qvplay/distinfo | 4 | ||||
-rw-r--r-- | graphics/qvplay/patches/patch-aa | 16 |
3 files changed, 15 insertions, 11 deletions
diff --git a/graphics/qvplay/Makefile b/graphics/qvplay/Makefile index cef2b39aa0c..e90222fb329 100644 --- a/graphics/qvplay/Makefile +++ b/graphics/qvplay/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2009/05/19 08:59:18 wiz Exp $ +# $NetBSD: Makefile,v 1.14 2010/02/03 22:24:06 joerg Exp $ # DISTNAME= qvplay-0.94 @@ -10,6 +10,8 @@ HOMEPAGE= http://www.asahi-net.or.jp/~xg2k-hys/index-e.html COMMENT= Software for use with CASIO QV digital cameras LICENSE= generic-nonlicense +PKG_DESTDIR_SUPPORT= user-destdir + RESTRICTED= No permission to distribute NO_SRC_ON_FTP= ${RESTRICTED} NO_BIN_ON_FTP= ${RESTRICTED} @@ -20,4 +22,6 @@ WRKSRC= ${WRKDIR}/QVplay094/src GNU_CONFIGURE= yes CONFIGURE_HAS_MANDIR= NO +INSTALLATION_DIRS+= bin ${PKGMANDIR}/man1 + .include "../../mk/bsd.pkg.mk" diff --git a/graphics/qvplay/distinfo b/graphics/qvplay/distinfo index 7251170bda7..ae0db84043a 100644 --- a/graphics/qvplay/distinfo +++ b/graphics/qvplay/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2005/02/24 08:45:12 agc Exp $ +$NetBSD: distinfo,v 1.4 2010/02/03 22:24:06 joerg Exp $ SHA1 (qvplay-0.94.tar.gz) = ecc48babf604f802833de16eb404186820c93edc RMD160 (qvplay-0.94.tar.gz) = 2f84c15541913736ea53c089ae409c60c6dfdae2 Size (qvplay-0.94.tar.gz) = 110612 bytes -SHA1 (patch-aa) = 1090a066cfe312a83b19ec06c5d9e97bce83b7a9 +SHA1 (patch-aa) = 7e7c81c9253095b8b01fe0b083c4f0ae62c9da0e diff --git a/graphics/qvplay/patches/patch-aa b/graphics/qvplay/patches/patch-aa index 14e7420c165..c2413f68c44 100644 --- a/graphics/qvplay/patches/patch-aa +++ b/graphics/qvplay/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.1.1.1 1999/09/17 03:46:32 jwise Exp $ +$NetBSD: patch-aa,v 1.2 2010/02/03 22:24:06 joerg Exp $ --- Makefile.in.orig Wed May 5 10:24:39 1999 +++ Makefile.in Sun Jun 20 19:21:55 1999 @@ -10,8 +10,8 @@ @@ -8,7 +8,7 @@ $NetBSD: patch-aa,v 1.1.1.1 1999/09/17 03:46:32 jwise Exp $ -bindir = /usr/local/bin -mandir = /usr/local/man/man1 +bindir = $(PREFIX)/bin -+mandir = $(PREFIX)/man/man1 ++mandir = $(PREFIX)/${PKGMANDIR}/man1 SRCS1 = tty.c command.c command1.c getuint.c jpeg.c ppm.c bmp.c qvplay.c OBJS1 = tty.o command.o command1.o getuint.o jpeg.o ppm.o bmp.o qvplay.o @@ -22,12 +22,12 @@ $NetBSD: patch-aa,v 1.1.1.1 1999/09/17 03:46:32 jwise Exp $ - $(INSTALL_PROGRAM) -o root -g bin -m 444 $(MAN1) $(mandir)/$(MAN1) - $(INSTALL_PROGRAM) -o root -g bin -m 444 $(MAN2) $(mandir)/$(MAN2) - $(INSTALL_PROGRAM) -o root -g bin -m 444 $(MAN3) $(mandir)/$(MAN3) -+ $(INSTALL_PROGRAM) $(PROG1) $(bindir)/$(PROG1) -+ $(INSTALL_PROGRAM) $(PROG2) $(bindir)/$(PROG2) -+ $(INSTALL_PROGRAM) $(PROG3) $(bindir)/$(PROG3) -+ $(INSTALL_DATA) $(MAN1) $(mandir)/$(MAN1) -+ $(INSTALL_DATA) $(MAN2) $(mandir)/$(MAN2) -+ $(INSTALL_DATA) $(MAN3) $(mandir)/$(MAN3) ++ $(INSTALL_PROGRAM) $(PROG1) ${DESTDIR}$(bindir)/$(PROG1) ++ $(INSTALL_PROGRAM) $(PROG2) ${DESTDIR}$(bindir)/$(PROG2) ++ $(INSTALL_PROGRAM) $(PROG3) ${DESTDIR}$(bindir)/$(PROG3) ++ $(INSTALL_DATA) $(MAN1) ${DESTDIR}$(mandir)/$(MAN1) ++ $(INSTALL_DATA) $(MAN2) ${DESTDIR}$(mandir)/$(MAN2) ++ $(INSTALL_DATA) $(MAN3) ${DESTDIR}$(mandir)/$(MAN3) depend: .depend .depend: mkdep $(SRCS1) |