diff options
author | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2004-02-22 13:36:15 +0000 |
---|---|---|
committer | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2004-02-22 13:36:15 +0000 |
commit | 2668410b930d8ccdb1cdc49e6abdfa619a4a85c5 (patch) | |
tree | ba89299cb20e1e456f8dd83243e7cf32e670097f /japanese/anthy/Makefile | |
parent | 0a5a5e276a68e495cf250b72c0ae0da5e449328d (diff) |
1. Change the install location of elisp files.
2. SIZEify.
3. Install the document of elisp files.
PR: ports/63150 [1]
Submitted by: NIIMI Satoshi <sa2c@sa2c.net> [1]
Notes
Notes:
svn path=/head/; revision=101724
Diffstat (limited to 'japanese/anthy/Makefile')
-rw-r--r-- | japanese/anthy/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/japanese/anthy/Makefile b/japanese/anthy/Makefile index 3eaabc9570fe..bdb596ab34e4 100644 --- a/japanese/anthy/Makefile +++ b/japanese/anthy/Makefile @@ -7,6 +7,7 @@ PORTNAME= anthy PORTVERSION= 4700 +PORTREVISION= 1 CATEGORIES= japanese MASTER_SITES= http://downloads.sourceforge.jp/anthy/6621/:anthy DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:anthy @@ -20,7 +21,8 @@ USE_LIBTOOL= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} INSTALLS_SHLIB= yes -ELISPDIR= share/emacs/site-lisp +DOCSDIR= share/doc/ja/anthy +ELISPDIR= share/emacs/site-lisp/anthy PLIST_SUB= ELISPDIR=${ELISPDIR} .if defined(WITH_2CHDIC) @@ -40,6 +42,10 @@ post-patch: 's| install-lispLISP||g' ${WRKSRC}/src-util/Makefile.in post-install: + ${MKDIR} ${PREFIX}/${ELISPDIR} ${INSTALL_DATA} ${WRKSRC}/src-util/*.el ${PREFIX}/${ELISPDIR} +.if !defined(NOPORTDOCS) + ${INSTALL_DATA} ${WRKSRC}/doc/ELISP ${PREFIX}/${DOCSDIR} +.endif .include <bsd.port.mk> |