This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Konrad Gräfe
committed
Sep 20, 2010
1 parent
810c5c0
commit c08f541
Showing
10 changed files
with
52 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.6 | ||
1.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,20 @@ | ||
#! /bin/sh | ||
set -x | ||
|
||
ls VERSION >/dev/null && | ||
ls configure.in.in >/dev/null && | ||
ls COPYING >/dev/null && | ||
echo generating configure.in && | ||
test -f VERSION || exit | ||
test -f configure.in.in || exit | ||
test -f COPYING || exit | ||
|
||
languages="" | ||
for f in po/*.po | ||
do languages="$languages $(basename $f .po)" | ||
do test -f $f && languages="$languages $(basename $f .po)" | ||
done | ||
|
||
sed -e "s/@@VERSION@@/$(cat VERSION)/" -e "s/@@LANGUAGES@@/$(echo $languages)/" configure.in.in >configure.in && | ||
echo aclocal && | ||
aclocal && | ||
echo autoheader && | ||
autoheader && | ||
echo libtoolize --copy && | ||
libtoolize --copy && | ||
echo automake --add-missing --copy && | ||
automake --add-missing --copy && | ||
echo autoconf && | ||
autoconf && | ||
echo libtoolize --copy --install && | ||
libtoolize --copy --install && | ||
echo intltoolize --copy --force && | ||
intltoolize --copy --force | ||
sed -e "s/@@VERSION@@/$(cat VERSION)/" -e "s/@@LANGUAGES@@/$(echo $languages)/" configure.in.in >configure.in || exit | ||
aclocal || exit | ||
autoheader || exit | ||
libtoolize --copy || exit | ||
automake --add-missing --copy || exit | ||
autoconf || exit | ||
libtoolize --copy --install || exit | ||
intltoolize --copy --force || exit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
#!/bin/bash | ||
vim ChangeLog && | ||
vim VERSION && | ||
set -x | ||
|
||
languages="" | ||
for f in po/*.po | ||
do languages="$languages $(basename $f .po)" | ||
done | ||
vim ChangeLog || exit | ||
vim VERSION || exit | ||
|
||
sed -e "s/@@VERSION@@/$(cat VERSION)/" -e "s/@@LANGUAGES@@/$(echo $languages)/" configure.in.in >configure.in && | ||
./autogen.sh && | ||
./configure && | ||
echo 1 >DEB_REVISION | ||
|
||
./autogen.sh || exit | ||
./configure || exit | ||
cp config.h config.h.mingw |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,7 +66,7 @@ | |
#define PACKAGE_NAME "pidgin-birthday-reminder" | ||
|
||
/* Define to the full name and version of this package. */ | ||
#define PACKAGE_STRING "pidgin-birthday-reminder 1.6" | ||
#define PACKAGE_STRING "pidgin-birthday-reminder 1.7" | ||
|
||
/* Define to the one symbol short name of this package. */ | ||
#define PACKAGE_TARNAME "pidgin-birthday-reminder" | ||
|
@@ -75,7 +75,7 @@ | |
#define PACKAGE_URL "" | ||
|
||
/* Define to the version of this package. */ | ||
#define PACKAGE_VERSION "1.6" | ||
#define PACKAGE_VERSION "1.7" | ||
|
||
/* Define the plugin author to be used */ | ||
#define PLUGIN_AUTHOR "Konrad Gräfe <[email protected]>" | ||
|
@@ -87,7 +87,7 @@ | |
#define PLUGIN_STATIC_NAME "birthday-reminder" | ||
|
||
/* Define the plugin version to be used */ | ||
#define PLUGIN_VERSION "1.6" | ||
#define PLUGIN_VERSION "1.7" | ||
|
||
/* Define the plugin website to be used */ | ||
#define PLUGIN_WEBSITE "http://freakazoid.teamblind.de/2009/02/14/pidgin-birthday-reminder/" | ||
|
@@ -96,4 +96,4 @@ | |
#define STDC_HEADERS 1 | ||
|
||
/* Version number of package */ | ||
#define VERSION "1.6" | ||
#define VERSION "1.7" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters