~ubuntu-branches/ubuntu/natty/libreoffice-l10n/natty-updates

« back to all changes in this revision

Viewing changes to sources/libreoffice-libs-extern-sys-3.3.0.4/dictionaries/nl_NL/makefile.mk

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2011-01-21 01:37:08 UTC
  • mfrom: (0.6.1) (0.5.1) (0.4.1) (0.1.2)
  • Revision ID: package-import@ubuntu.com-20110121013708-d4rj1blksdgno023
Tags: 1:3.3.0~rc4-1ubuntu1
* Merge 3.3.0~rc4 changes.
* Merged Debian packaging up to r2336.
* libreoffice-writer: Make the java stuff a suggestion instead of a
  recommendation.
* Fix libreoffice-base upgrade, overwriting doc file. LP: #705343.
* Add initial desktop menu translations. LP: #696549. Still needs
  rosetta integration. Use the file lo-desktop.pot.
* Relax dependencies of libreoffice-l10n-xx on libreoffice-common.
* Move the icons zip files back into the libreoffice-style-* packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#*************************************************************************
 
2
#
 
3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 
4
 
5
# Copyright 2000, 2010 Oracle and/or its affiliates.
 
6
#
 
7
# OpenOffice.org - a multi-platform office productivity suite
 
8
#
 
9
# This file is part of OpenOffice.org.
 
10
#
 
11
# OpenOffice.org is free software: you can redistribute it and/or modify
 
12
# it under the terms of the GNU Lesser General Public License version 3
 
13
# only, as published by the Free Software Foundation.
 
14
#
 
15
# OpenOffice.org is distributed in the hope that it will be useful,
 
16
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
# GNU Lesser General Public License version 3 for more details
 
19
# (a copy is included in the LICENSE file that accompanied this code).
 
20
#
 
21
# You should have received a copy of the GNU Lesser General Public License
 
22
# version 3 along with OpenOffice.org.  If not, see
 
23
# <http://www.openoffice.org/license.html>
 
24
# for a copy of the LGPLv3 License.
 
25
#
 
26
#*************************************************************************
 
27
 
 
28
PRJ=..
 
29
 
 
30
PRJNAME=dictionaries
 
31
TARGET=dict-nl
 
32
 
 
33
# --- Settings -----------------------------------------------------
 
34
 
 
35
.INCLUDE: settings.mk
 
36
# it might be useful to have an extension wide include to set things
 
37
# like the EXTNAME variable (used for configuration processing)
 
38
# .INCLUDE :  $(PRJ)$/source$/<extension name>$/<extension_name>.pmk
 
39
 
 
40
# --- Files --------------------------------------------------------
 
41
 
 
42
# name for uniq directory
 
43
EXTENSIONNAME:=dict-nl
 
44
EXTENSION_ZIPNAME:=dict-nl
 
45
 
 
46
# some other targets to be done
 
47
 
 
48
# --- Extension packaging ------------------------------------------
 
49
 
 
50
# just copy:
 
51
COMPONENT_FILES= \
 
52
    $(EXTENSIONDIR)$/nl_NL.aff \
 
53
    $(EXTENSIONDIR)$/nl_NL.dic \
 
54
    $(EXTENSIONDIR)$/hyph_nl_NL.dic \
 
55
    $(EXTENSIONDIR)$/desc_en_US.txt \
 
56
    $(EXTENSIONDIR)$/desc_nl_NL.txt \
 
57
    $(EXTENSIONDIR)$/license_en_EN.txt \
 
58
    $(EXTENSIONDIR)$/licentie_nl_NL.txt \
 
59
    $(EXTENSIONDIR)$/OpenTaal.png
 
60
 
 
61
COMPONENT_CONFIGDEST=.
 
62
COMPONENT_XCU= \
 
63
    $(EXTENSIONDIR)$/dictionaries.xcu
 
64
 
 
65
# disable fetching default OOo license text
 
66
CUSTOM_LICENSE=README_NL.txt
 
67
# override default license destination
 
68
PACKLICS= $(EXTENSIONDIR)$/$(CUSTOM_LICENSE)
 
69
 
 
70
# add own targets to packing dependencies (need to be done before
 
71
# packing the xtension
 
72
# EXTENSION_PACKDEPS=makefile.mk $(CUSTOM_LICENSE)
 
73
EXTENSION_PACKDEPS=$(COMPONENT_FILES)
 
74
 
 
75
# global settings for extension packing
 
76
.INCLUDE : extension_pre.mk
 
77
.INCLUDE : target.mk
 
78
# global targets for extension packing
 
79
.INCLUDE : extension_post.mk
 
80