Skip to content

Commit

Permalink
add pixmap
Browse files Browse the repository at this point in the history
  • Loading branch information
liske committed Jul 7, 2008
1 parent 3803e03 commit fa98c6c
Show file tree
Hide file tree
Showing 11 changed files with 444 additions and 8 deletions.
1 change: 1 addition & 0 deletions Makefile.in
Expand Up @@ -84,6 +84,7 @@ CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
DBXSL = @DBXSL@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DPKGBPKG = @DPKGBPKG@
Expand Down
3 changes: 2 additions & 1 deletion clients/Makefile.in
Expand Up @@ -59,6 +59,7 @@ CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
DBXSL = @DBXSL@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DPKGBPKG = @DPKGBPKG@
Expand Down Expand Up @@ -280,7 +281,7 @@ uninstall-am: uninstall-info-am
uninstall-info-am


all: $(EXTRA_DIST)
distpkgs: $(EXTRA_DIST)

debian-pkg:
cd debian && $(DPKGBPKG) -rfakeroot -b -uc
Expand Down
17 changes: 15 additions & 2 deletions configure
Expand Up @@ -694,6 +694,7 @@ CPP
GREP
EGREP
XSLTPROC
DBXSL
DPKGBPKG
LIBOBJS
LTLIBOBJS'
Expand Down Expand Up @@ -4829,7 +4830,7 @@ fi
# Check if `screen' is installed on your system
echo -n "checking for screen... "
if test -x /usr/bin/screen ; then
if test -x /usr/bin/screen; then
cat >>confdefs.h <<\_ACEOF
#define SCREEN_BINARY "/usr/bin/screen"
Expand Down Expand Up @@ -4872,6 +4873,17 @@ else
fi
# Check if `docbook-xsl' is installed on your system
echo -n "checking for docbook-xsl... "
if test -r /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl ; then
DBXSL="/usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl"
echo $DBXSL
else
DBXSL=
echo "not found."
fi
# Check if `dpkg-buildpackage' is installed on your system
echo -n "checking for dpkg-buildpackage... "
if test -x /usr/bin/dpkg-buildpackage ; then
Expand Down Expand Up @@ -6101,12 +6113,13 @@ CPP!$CPP$ac_delim
GREP!$GREP$ac_delim
EGREP!$EGREP$ac_delim
XSLTPROC!$XSLTPROC$ac_delim
DBXSL!$DBXSL$ac_delim
DPKGBPKG!$DPKGBPKG$ac_delim
LIBOBJS!$LIBOBJS$ac_delim
LTLIBOBJS!$LTLIBOBJS$ac_delim
_ACEOF
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 84; then
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 85; then
break
elif $ac_last_try; then
{ { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
Expand Down
13 changes: 12 additions & 1 deletion configure.in
Expand Up @@ -44,7 +44,7 @@ AC_STRUCT_TM

# Check if `screen' is installed on your system
echo -n "checking for screen... "
if test -x /usr/bin/screen ; then
if test -x /usr/bin/screen; then
AC_DEFINE(SCREEN_BINARY,"/usr/bin/screen",[ Where is the command screen located. ])
echo "/usr/bin/screen"
elif test -x /usr/local/bin/screen; then
Expand Down Expand Up @@ -75,6 +75,17 @@ else
fi
AC_SUBST(XSLTPROC)

# Check if `docbook-xsl' is installed on your system
echo -n "checking for docbook-xsl... "
if test -r /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl ; then
DBXSL="/usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl"
echo $DBXSL
else
DBXSL=
echo "not found."
fi
AC_SUBST(DBXSL)

# Check if `dpkg-buildpackage' is installed on your system
echo -n "checking for dpkg-buildpackage... "
if test -x /usr/bin/dpkg-buildpackage ; then
Expand Down
3 changes: 2 additions & 1 deletion debian/menu
@@ -1,3 +1,4 @@
?package(apt-dater):needs="text" section="Apps/System" \
title="apt-dater" command="/usr/bin/apt-dater" \
title="apt-dater" command="/usr/bin/apt-dater" hints="apt" \
icon="/usr/share/pixmaps/apt-dater.xpm" \
longtitle="Terminal-based remote package update manager"
2 changes: 1 addition & 1 deletion debian/rules
Expand Up @@ -67,7 +67,7 @@ install: build

# Add here commands to install the package into debian/apt-dater.
cd src && $(MAKE) DESTDIR=$(CURDIR)/debian/apt-dater install

mkdir -p debian/apt-dater/usr/share/pixmaps && cp images/apt-dater.xpm debian/apt-dater/usr/share/pixmaps

# Build architecture-independent files here.
binary-indep: build install
Expand Down
147 changes: 147 additions & 0 deletions images/apt-dater.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit fa98c6c

Please sign in to comment.