mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-17 08:01:36 +00:00
8ce3754802
- fix WITHOUT_NLS handling - install some docs if NOPORTDOCS not defined PR: 131054 Submitted by: Pawel Pekala" <c0rn at o2 dot pl> (maintainer)
22 lines
617 B
Plaintext
22 lines
617 B
Plaintext
--- Makefile.orig 2007-12-17 19:00:19.000000000 +0100
|
|
+++ Makefile 2009-01-27 19:27:39.000000000 +0100
|
|
@@ -19,18 +19,15 @@
|
|
sed -e "s,@PREFIX@,${PREFIX},;s,@LIBDIR@,${LIBDIR},;s,@VERSION@,${VERSION}," \
|
|
< ${NAME} > build/${NAME}
|
|
pod2man ${NAME} > build/${NAME}.1
|
|
- ${MAKE} -C po build
|
|
|
|
|
|
install: all install-dirs
|
|
install -m 0755 build/${NAME} ${DESTDIR}${BINDIR}
|
|
install -m 0644 build/${NAME}.1 ${DESTDIR}${MAN1DIR}
|
|
- ${MAKE} -C po install
|
|
|
|
install-dirs:
|
|
install -d ${DESTDIR}${BINDIR}
|
|
install -d ${DESTDIR}${MAN1DIR}
|
|
- ${MAKE} -C po install-dirs
|
|
|
|
uninstall:
|
|
rm -f ${DESTDIR}${BINDIR}/${NAME}
|