blob: ca2e14fe1a9a18fd7aa2cf4cf9dc9aca109dc251 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# $NetBSD: Makefile,v 1.10 2009/07/07 19:01:16 joerg Exp $
#
DISTNAME= qDecoder-9.0.1
CATEGORIES= www
MASTER_SITES= ftp://ftp.qDecoder.org/pub/qDecoder/
MAINTAINER= jypak@users.sourceforge.net
HOMEPAGE= http://www.qDecoder.org/
COMMENT= Web Application Interface for C/C++ (CGI Library)
PKG_DESTDIR_SUPPORT= user-destdir
GNU_CONFIGURE= YES
USE_LIBTOOL= YES
INSTALLATION_DIRS= include lib share/doc/qDecoder share/doc/qDecoder/html \
share/examples/qDecoder share/examples/qDecoder/qDecoder-upload
post-install:
cd ${WRKSRC}; ${INSTALL_DATA} AUTHORS CHANGES COPYING \
qDecoder.jpg ${DESTDIR}${PREFIX}/share/doc/qDecoder
cd ${WRKSRC}/src; ${INSTALL_DATA} qDecoder.h ${DESTDIR}${PREFIX}/include
cd ${WRKSRC}/doc/html; ${INSTALL_DATA} * ${DESTDIR}${PREFIX}/share/doc/qDecoder/html
cd ${WRKSRC}/examples; ${INSTALL_DATA} *.c *.conf s*.in \
*.html ${DESTDIR}${PREFIX}/share/examples/qDecoder
cd ${WRKSRC}/examples/qDecoder-upload; ${INSTALL_DATA} *.html *.js \
${DESTDIR}${PREFIX}/share/examples/qDecoder/qDecoder-upload
.include "../../mk/bsd.pkg.mk"
|