mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
789d75c728
-Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr
82 lines
2.2 KiB
Makefile
82 lines
2.2 KiB
Makefile
# New ports collection makefile for: eb
|
|
# Date created: 20 Jan 1999
|
|
# Whom: Motoyuki Kasahara <m-kasahr@sra.co.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= eb
|
|
PORTVERSION= 4.4.1
|
|
CATEGORIES= japanese
|
|
MASTER_SITES= ftp://ftp.sra.co.jp/pub/misc/eb/ \
|
|
ftp://ftp.sra.co.jp/pub/misc/eb/old/eb-${PORTVERSION:C/^([0-9]+)\.([0-9]+).*/\1.\2/}/
|
|
DISTFILES= ${EBFILES} \
|
|
${LISTFILES} \
|
|
${APPENDIXFILES}
|
|
EXTRACT_ONLY= ${EBFILES}
|
|
|
|
MAINTAINER= yasu@utahime.org
|
|
COMMENT= C library for accessing EB, EBG, EBXA and EPWING CD-ROM dictionaries
|
|
|
|
EBFILES= ${DISTNAME}${EXTRACT_SUFX}
|
|
APPENDIXFILES= appendix/cencro-1.0.tar.gz \
|
|
appendix/chujiten-2.3.tar.gz \
|
|
appendix/chujiten2-2.0.tar.gz \
|
|
appendix/chujiten6-2.3.tar.gz \
|
|
appendix/colloc-2.0.tar.gz \
|
|
appendix/crownfj-2.0.tar.gz \
|
|
appendix/crownfj2-1.0.tar.gz \
|
|
appendix/crowngj-1.0.tar.gz \
|
|
appendix/daihyakka-1.0.tar.gz \
|
|
appendix/daijirin-2.0.tar.gz \
|
|
appendix/dd75-2.0.tar.gz \
|
|
appendix/gendai2000-1.0.tar.gz \
|
|
appendix/genius-1.0.tar.gz \
|
|
appendix/genius2-1.1.tar.gz \
|
|
appendix/global-2.0.tar.gz \
|
|
appendix/heritage-2.2.tar.gz \
|
|
appendix/izumi-2.0.tar.gz \
|
|
appendix/jitenban-2.4.tar.gz \
|
|
appendix/jitenban97-2.1.tar.gz \
|
|
appendix/kanjigen-2.0.tar.gz \
|
|
appendix/kanjigen2-2.0.tar.gz \
|
|
appendix/kojien-2.3.tar.gz \
|
|
appendix/kojien2-2.0.tar.gz \
|
|
appendix/kojien4-2.2.tar.gz \
|
|
appendix/oxford-2.0.tar.gz \
|
|
appendix/plus-2.0.tar.gz \
|
|
appendix/readers-2.2.tar.gz \
|
|
appendix/readers2-2.0.tar.gz \
|
|
appendix/ruigigo-1.0.tar.gz \
|
|
appendix/superdic98-1.0.tar.gz
|
|
|
|
DIST_SUBDIR= eb
|
|
|
|
USE_AUTOTOOLS= libtool:22
|
|
USE_BZIP2= yes
|
|
USE_GETTEXT= yes
|
|
USE_PERL5= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
CONFIGURE_ARGS= --enable-nls \
|
|
--with-gettext-includes=${LOCALBASE}/include \
|
|
--with-gettext-libraries=${LOCALBASE}/lib \
|
|
--with-iconv-includes=${LOCALBASE}/include \
|
|
--with-iconv-libraries=${LOCALBASE}/lib \
|
|
--with-pkgdocdir=${DOCSDIR}
|
|
|
|
APPENDIXDIR= ${DATADIR}/appendix
|
|
|
|
post-extract:
|
|
${RM} -fr ${WRKSRC}/zlib
|
|
${MKDIR} ${WRKDIR}/appendix
|
|
.for file in ${APPENDIXFILES}
|
|
${TAR} --exclude CVS -C ${WRKDIR}/appendix -zxmf \
|
|
${DISTDIR}/${DIST_SUBDIR}/${file}
|
|
.endfor
|
|
|
|
post-install:
|
|
${CP} -R ${WRKDIR}/appendix/ ${APPENDIXDIR}
|
|
|
|
.include <bsd.port.mk>
|