diff options
author | krion <krion@FreeBSD.org> | 2004-07-11 10:22:46 +0000 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2004-07-11 10:22:46 +0000 |
commit | 1b3d4f7a6c80d42d506b4abc7d71c9369dade07f (patch) | |
tree | d7aa4d4e1f667f54768a00779e1087d5d3514e76 /misc/lifelines | |
parent | ac59888e93c4d90dd05eb499b89a9c16583e9e9b (diff) | |
download | FreeBSD-ports-1b3d4f7a6c80d42d506b4abc7d71c9369dade07f.zip FreeBSD-ports-1b3d4f7a6c80d42d506b4abc7d71c9369dade07f.tar.gz |
Support WITHOUT_NLS
Diffstat (limited to 'misc/lifelines')
-rw-r--r-- | misc/lifelines/Makefile | 9 | ||||
-rw-r--r-- | misc/lifelines/pkg-plist | 14 |
2 files changed, 15 insertions, 8 deletions
diff --git a/misc/lifelines/Makefile b/misc/lifelines/Makefile index 54ce5cf..c3d5e24 100644 --- a/misc/lifelines/Makefile +++ b/misc/lifelines/Makefile @@ -16,13 +16,20 @@ COMMENT= An advanced genealogical system GNU_CONFIGURE= yes CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -USE_GETTEXT= yes USE_ICONV= yes USE_BZIP2= yes USE_GETOPT_LONG=yes MAN1= btedit.1 dbverify.1 llines.1 +.if !defined(WITHOUT_NLS) +USE_GETTEXT= yes +PLIST_SUB+= NLS="" +.else +CONFIGURE_ARGS+=--disable-nls +PLIST_SUB+= NLS="@comment " +.endif + post-install: .if !defined(NOPORTDOCS) .for file in btedit.1 dbverify.1 llines.1 diff --git a/misc/lifelines/pkg-plist b/misc/lifelines/pkg-plist index 526fdcb..95c1b32 100644 --- a/misc/lifelines/pkg-plist +++ b/misc/lifelines/pkg-plist @@ -23,11 +23,11 @@ bin/llines %%DATADIR%%/ll-userguide.pdf %%DATADIR%%/ll-userguide.sv.html %%DATADIR%%/ll-userguide.txt -share/locale/da/LC_MESSAGES/lifelines.mo -share/locale/de/LC_MESSAGES/lifelines.mo -share/locale/el/LC_MESSAGES/lifelines.mo -share/locale/fr/LC_MESSAGES/lifelines.mo -share/locale/it/LC_MESSAGES/lifelines.mo -share/locale/sv/LC_MESSAGES/lifelines.mo -@dirrm %%PORTDOCS%%%%DOCSDIR%% +%%NLS%%share/locale/da/LC_MESSAGES/lifelines.mo +%%NLS%%share/locale/de/LC_MESSAGES/lifelines.mo +%%NLS%%share/locale/el/LC_MESSAGES/lifelines.mo +%%NLS%%share/locale/fr/LC_MESSAGES/lifelines.mo +%%NLS%%share/locale/it/LC_MESSAGES/lifelines.mo +%%NLS%%share/locale/sv/LC_MESSAGES/lifelines.mo +%%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm %%DATADIR%% |