~ubuntu-branches/ubuntu/trusty/surfraw/trusty-proposed

« back to all changes in this revision

Viewing changes to examples/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Ian Beckwith
  • Date: 2011-07-12 01:31:52 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20110712013152-ys4hnje67mwi3kgu
Tags: 2.2.8-1
* New upstream version
  + SURFRAW_graphical_remote defaults to off, as chromium
    doesn't support '-remote openURL()' (Closes: #628683).
* Move opensearch elvi to main surfraw package.
  It now has an optional mode that uses a redirector
  if the dependencies are not installed.
* debian/rules:
  + hardcode AWK as awk (Closes: #608967).
  + use dh_prep instead of dh_clean -k.
  + add build-arch and build-indep targets.
* debian/control:
  + Build-Depends: bump debhelper dependency to (>= 7).
  + Standards-Version: 3.9.2.
  + surfraw-extra: convert Conflicts: to Breaks:.
  + surfraw:
    * Breaks: surfraw-extra (<= 2.2.7-1)
      as we have taken over /usr/lib/surfraw/opensearch.
    * Recommends: surfraw-extra: add version of (>> 2.2.7-1).
    * Tweak Description.
* debian/source/format: explicitly specify 1.0 source format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
@SET_MAKE@
17
17
 
18
 
# $Id$
19
 
 
20
18
VPATH = @srcdir@
21
19
pkgdatadir = $(datadir)/@PACKAGE@
22
20
pkglibdir = $(libdir)/@PACKAGE@
33
31
NORMAL_UNINSTALL = :
34
32
PRE_UNINSTALL = :
35
33
POST_UNINSTALL = :
36
 
DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
37
 
        $(top_srcdir)/Makefile.include
38
34
subdir = examples
 
35
DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in
39
36
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
40
37
am__aclocal_m4_deps = $(top_srcdir)/configure.in
41
38
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
128
125
all: all-am
129
126
 
130
127
.SUFFIXES:
131
 
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am $(top_srcdir)/Makefile.include $(am__configure_deps)
 
128
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
132
129
        @for dep in $?; do \
133
130
          case '$(am__configure_deps)' in \
134
131
            *$$dep*) \
299
296
 
300
297
 
301
298
uzbl_load_url_from_surfraw: uzbl_load_url_from_surfraw.IN
302
 
 
303
 
%: %.IN
304
299
        -rm -f $@ $@.tmp
305
 
        sed -e 's,@bindir\@,${bindir},g; '\
306
 
            -e 's,@mandir\@,${mandir},g; '\
307
 
            -e 's,@VERSION\@,${VERSION},g; '\
308
 
            -e 's,@prefix\@,${prefix},g; '\
309
 
            -e 's,@ELVIDIR\@,${ELVIDIR},g; '\
310
 
            -e 's,@AWK\@,${AWK},g; '\
311
 
            -e 's,@TEXTBROWSER\@,${TEXTBROWSER},g; '\
312
 
            -e 's,@GRAPHICALBROWSER\@,${GRAPHICALBROWSER},g; '\
313
 
            -e 's,@sysconfdir\@,${sysconfdir},g' $< >$@.tmp
 
300
        sed -e 's,@AWK\@,${AWK},g;' $? > $@.tmp
314
301
        chmod +x $@.tmp
315
302
        mv $@.tmp $@
316
303
# Tell versions [3.59,3.63) of GNU make to not export all variables.