revision 778:a34b180d92f7
summary |
tree |
shortlog |
changelog |
graph |
changeset |
raw | bz2 | zip | gz changeset | 778:a34b180d92f7 |
parent | 777:60431d09605c |
child | 779:a60e47313e7b |
author | nkeynes |
date | Mon Jul 28 06:39:00 2008 +0000 (13 years ago) |
Add bundle proplist and icon
![]() | Info.plist.in | view | annotate | diff | log | |
![]() | Makefile.am | view | annotate | diff | log | |
![]() | Makefile.in | view | annotate | diff | log | |
![]() | configure | view | annotate | diff | log | |
![]() | configure.in | view | annotate | diff | log | |
![]() | pixmaps/lxdream.icns | view | annotate | diff | log |
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +00001.2 +++ b/Info.plist.in Mon Jul 28 06:39:00 2008 +00001.3 @@ -0,0 +1,32 @@1.4 +<?xml version="1.0" encoding="UTF-8"?>1.5 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">1.6 +<plist version="1.0">1.7 +<dict>1.8 + <key>CFBundleDevelopmentRegion</key>1.9 + <string>English</string>1.10 + <key>CFBundleExecutable</key>1.11 + <string>lxdream</string>1.12 + <key>CFBundleGetInfoString</key>1.13 + <string>@VERSION@, Copyright (C) 2005-2008 Nathan Keynes</string>1.14 + <key>CFBundleIconFile</key>1.15 + <string>lxdream</string>1.16 + <key>CFBundleIdentifier</key>1.17 + <string>org.lxdream.lxdream</string>1.18 + <key>CFBundleInfoDictionaryVersion</key>1.19 + <string>6.0</string>1.20 + <key>CFBundleName</key>1.21 + <string>lxdream</string>1.22 + <key>CFBundlePackageType</key>1.23 + <string>APPL</string>1.24 + <key>CFBundleShortVersionString</key>1.25 + <string>@VERSION@</string>1.26 + <key>CFBundleSignature</key>1.27 + <string>????</string>1.28 + <key>CFBundleVersion</key>1.29 + <string>1.0</string>1.30 + <key>NSMainNibFile</key>1.31 + <string>MainMenu</string>1.32 + <key>NSPrincipalClass</key>1.33 + <string>NSApplication</string>1.34 +</dict>1.35 +</plist>
2.1 --- a/Makefile.am Mon Jul 28 06:29:46 2008 +00002.2 +++ b/Makefile.am Mon Jul 28 06:39:00 2008 +00002.3 @@ -61,6 +61,7 @@2.4 rm -rf $(BUNDLE)2.5 mkdir -p $(BUNDLE)/Contents/MacOS2.6 mkdir -p $(BUNDLE)/Contents/Resources2.7 + cp Info.plist $(BUNDLE)/Contents2.8 cp src/lxdream $(BUNDLE)/Contents/MacOS2.9 cp -R $(srcdir)/pixmaps/* $(BUNDLE)/Contents/Resources2.10 $(srcdir)/bundlelibs.pl $(BUNDLE)/Contents/MacOS/lxdream $(BUNDLE)/Contents/Frameworks
3.1 --- a/Makefile.in Mon Jul 28 06:29:46 2008 +00003.2 +++ b/Makefile.in Mon Jul 28 06:39:00 2008 +00003.3 @@ -37,11 +37,11 @@3.4 build_triplet = @build@3.5 host_triplet = @host@3.6 DIST_COMMON = README $(am__configure_deps) $(dist_sysconf_DATA) \3.7 - $(srcdir)/Makefile.am $(srcdir)/Makefile.in \3.8 - $(srcdir)/config.h.in $(top_srcdir)/configure \3.9 - $(top_srcdir)/test/Makefile.in AUTHORS COPYING ChangeLog \3.10 - INSTALL NEWS acconfig.h config.guess config.sub depcomp \3.11 - install-sh missing mkinstalldirs3.12 + $(srcdir)/Info.plist.in $(srcdir)/Makefile.am \3.13 + $(srcdir)/Makefile.in $(srcdir)/config.h.in \3.14 + $(top_srcdir)/configure $(top_srcdir)/test/Makefile.in AUTHORS \3.15 + COPYING ChangeLog INSTALL NEWS acconfig.h config.guess \3.16 + config.sub depcomp install-sh missing mkinstalldirs3.17 subdir = .3.18 ACLOCAL_M4 = $(top_srcdir)/aclocal.m43.19 am__aclocal_m4_deps = $(top_srcdir)/configure.in3.20 @@ -51,7 +51,7 @@3.21 configure.lineno configure.status.lineno3.22 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs3.23 CONFIG_HEADER = config.h3.24 -CONFIG_CLEAN_FILES = test/Makefile3.25 +CONFIG_CLEAN_FILES = test/Makefile Info.plist3.26 SOURCES =3.27 DIST_SOURCES =3.28 RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \3.29 @@ -310,6 +310,8 @@3.30 -rm -f config.h stamp-h13.31 test/Makefile: $(top_builddir)/config.status $(top_srcdir)/test/Makefile.in3.32 cd $(top_builddir) && $(SHELL) ./config.status $@3.33 +Info.plist: $(top_builddir)/config.status $(srcdir)/Info.plist.in3.34 + cd $(top_builddir) && $(SHELL) ./config.status $@3.35 uninstall-info-am:3.36 install-man1: $(man1_MANS) $(man_MANS)3.37 @$(NORMAL_INSTALL)3.38 @@ -509,7 +511,7 @@3.39 distdir: $(DISTFILES)3.40 $(am__remove_distdir)3.41 mkdir $(distdir)3.42 - $(mkdir_p) $(distdir)/po $(distdir)/test3.43 + $(mkdir_p) $(distdir)/. $(distdir)/po $(distdir)/test3.44 @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \3.45 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \3.46 list='$(DISTFILES)'; for file in $$list; do \3.47 @@ -803,6 +805,7 @@3.48 @GUI_COCOA_TRUE@ rm -rf $(BUNDLE)3.49 @GUI_COCOA_TRUE@ mkdir -p $(BUNDLE)/Contents/MacOS3.50 @GUI_COCOA_TRUE@ mkdir -p $(BUNDLE)/Contents/Resources3.51 +@GUI_COCOA_TRUE@ cp Info.plist $(BUNDLE)/Contents3.52 @GUI_COCOA_TRUE@ cp src/lxdream $(BUNDLE)/Contents/MacOS3.53 @GUI_COCOA_TRUE@ cp -R $(srcdir)/pixmaps/* $(BUNDLE)/Contents/Resources3.54 @GUI_COCOA_TRUE@ $(srcdir)/bundlelibs.pl $(BUNDLE)/Contents/MacOS/lxdream $(BUNDLE)/Contents/Frameworks
4.1 --- a/configure Mon Jul 28 06:29:46 2008 +00004.2 +++ b/configure Mon Jul 28 06:39:00 2008 +00004.3 @@ -11444,7 +11444,7 @@4.4 < $srcdir/po/POTFILES.in > po/POTFILES4.7 -ac_config_files="$ac_config_files Makefile src/Makefile po/Makefile.in test/Makefile"4.8 +ac_config_files="$ac_config_files Makefile src/Makefile po/Makefile.in test/Makefile Info.plist"4.10 cat >confcache <<\_ACEOF4.11 # This file is a shell script that caches the results of configure4.12 @@ -12195,6 +12195,7 @@4.13 "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;4.14 "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;;4.15 "test/Makefile") CONFIG_FILES="$CONFIG_FILES test/Makefile" ;;4.16 + "Info.plist") CONFIG_FILES="$CONFIG_FILES Info.plist" ;;4.18 *) { { $as_echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&54.19 $as_echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
5.1 --- a/configure.in Mon Jul 28 06:29:46 2008 +00005.2 +++ b/configure.in Mon Jul 28 06:39:00 2008 +00005.3 @@ -262,6 +262,7 @@5.4 src/Makefile5.5 po/Makefile.in5.6 test/Makefile5.7 +Info.plist5.8 ])5.9 AS_MKDIR_P(test/sh4)
6.1 Binary file pixmaps/lxdream.icns has changed
.