1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-12 23:23:54 +00:00

(trunk) #2674 "Do not put the .svn directories to released tar file" -- fixed for 1.80

This commit is contained in:
Charles Kerr 2009-12-15 16:24:03 +00:00
parent 5fb945653f
commit 5ea18bc4ec
10 changed files with 86 additions and 60 deletions

View file

@ -22,10 +22,10 @@ SUBDIRS = \
$(DAEMON_DIR) \
$(CLI_DIR) \
$(GTK_DIR) \
$(MAC_DIR)
$(MAC_DIR) \
web
EXTRA_DIST = \
web \
qt \
NEWS \
AUTHORS \
@ -35,65 +35,9 @@ EXTRA_DIST = \
update-version-h.sh \
Transmission.xcodeproj/project.pbxproj
clutchdir = $(datadir)/transmission/web
clutch_DATA = \
web/index.html \
web/LICENSE
dist-hook:
rm -rf `find $(distdir)/qt -name .svn`
clutch_cssdir = $(clutchdir)/stylesheets
clutch_css_DATA = \
web/stylesheets/iphone.css \
web/stylesheets/common.css \
web/stylesheets/ie6.css \
web/stylesheets/ie7.css
clutch_jsdir = $(clutchdir)/javascript
clutch_js_DATA = \
web/javascript/menu.js \
web/javascript/dialog.js \
web/javascript/transmission.js \
web/javascript/transmission.remote.js \
web/javascript/common.js \
web/javascript/torrent.js
clutch_jquerydir = $(clutch_jsdir)/jquery
clutch_jquery_DATA = \
web/javascript/jquery/json.min.js \
web/javascript/jquery/jquery.contextmenu.min.js \
web/javascript/jquery/jquery.min.js \
web/javascript/jquery/jquery.form.min.js \
web/javascript/jquery/jquery.transmenu.min.js
clutch_imagesdir = $(clutchdir)/images
clutch_images_DATA = \
web/images/favicon.ico \
web/images/favicon.png \
web/images/webclip-icon.png
clutch_graphicsdir = $(clutch_imagesdir)/graphics
clutch_graphics_DATA = \
web/images/graphics/logo.png \
web/images/graphics/chrome.png \
web/images/graphics/iphone_chrome.png \
web/images/graphics/filter_bar.png \
web/images/graphics/filter_icon.png \
web/images/graphics/transfer_arrows.png
clutch_progressdir = $(clutch_imagesdir)/progress
clutch_progress_DATA = \
web/images/progress/progress.png
clutch_buttonsdir = $(clutch_imagesdir)/buttons
clutch_buttons_DATA = \
web/images/buttons/tab_backgrounds.png \
web/images/buttons/toolbar_buttons.png \
web/images/buttons/info_general.png \
web/images/buttons/torrent_buttons.png \
web/images/buttons/info_activity.png \
web/images/buttons/file_priority_buttons.png \
web/images/buttons/file_wanted_buttons.png \
web/images/buttons/info_files.png \
web/images/buttons/cancel.png
DISTCLEANFILES = \
intltool-extract \

View file

@ -446,6 +446,14 @@ AC_CONFIG_FILES([Makefile
macosx/Makefile
gtk/Makefile
gtk/icons/Makefile
web/Makefile
web/images/Makefile
web/images/buttons/Makefile
web/images/graphics/Makefile
web/images/progress/Makefile
web/javascript/Makefile
web/javascript/jquery/Makefile
web/stylesheets/Makefile
po/Makefile.in])
ac_configure_args="$ac_configure_args --enable-static --disable-shared -q"

11
web/Makefile.am Normal file
View file

@ -0,0 +1,11 @@
datadir = ${datarootdir}/${PACKAGE_NAME}/${subdir}
data_DATA = \
index.html \
LICENSE
SUBDIRS = \
images \
javascript \
stylesheets

11
web/images/Makefile.am Normal file
View file

@ -0,0 +1,11 @@
datadir = ${datarootdir}/${PACKAGE_NAME}/${subdir}
data_DATA = \
favicon.ico \
favicon.png \
webclip-icon.png
SUBDIRS = \
buttons \
graphics \
progress

View file

@ -0,0 +1,12 @@
datadir = ${datarootdir}/${PACKAGE_NAME}/${subdir}
data_DATA = \
cancel.png \
file_priority_buttons.png \
file_wanted_buttons.png \
info_activity.png \
info_files.png \
info_general.png \
tab_backgrounds.png \
toolbar_buttons.png \
torrent_buttons.png

View file

@ -0,0 +1,9 @@
datadir = ${datarootdir}/${PACKAGE_NAME}/${subdir}
data_DATA = \
chrome.png \
filter_bar.png \
filter_icon.png \
iphone_chrome.png \
logo.png \
transfer_arrows.png

View file

@ -0,0 +1,4 @@
datadir = ${datarootdir}/${PACKAGE_NAME}/${subdir}
data_DATA = \
progress.png

View file

@ -0,0 +1,12 @@
datadir = ${datarootdir}/${PACKAGE_NAME}/${subdir}
data_DATA = \
common.js \
dialog.js \
menu.js \
torrent.js \
transmission.js \
transmission.remote.js
SUBDIRS = \
jquery

View file

@ -0,0 +1,8 @@
datadir = ${datarootdir}/${PACKAGE_NAME}/${subdir}
data_DATA = \
json.min.js \
jquery.contextmenu.min.js \
jquery.min.js \
jquery.form.min.js \
jquery.transmenu.min.js

View file

@ -0,0 +1,7 @@
datadir = ${datarootdir}/${PACKAGE_NAME}/${subdir}
data_DATA = \
common.css \
ie6.css \
ie7.css \
iphone.css